npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sbox-api-mcp

v1.1.0

Published

MCP server for S&box game engine API documentation and Workshop (UGC) asset search. Search types, methods, properties, documentation, and community-made models, sounds, maps, and more.

Readme

sbox-api-mcp

MCP server for S&box game engine API documentation lookup. Indexes 1800+ types, 15,000+ members, and 8,000+ documentation entries from the S&box API, providing fast fuzzy search directly from Claude Code.

Installation

Claude Code Plugin (recommended)

claude plugin add sofianebel/sbox-api-mcp

Manual MCP Setup

claude mcp add sbox-api -- npx -y sbox-api-mcp

npx (direct)

npx sbox-api-mcp

Tools

| Tool | Description | Example | |------|-------------|---------| | search_types | Fuzzy search types (classes, structs, enums, interfaces) | search_types({ query: "GameObject" }) | | get_type | Full details of a specific type (methods, properties, fields) | get_type({ name: "Sandbox.GameObject" }) | | search_members | Search methods/properties across all types | search_members({ query: "Position", kind: "property" }) | | list_namespaces | List all API namespaces with type counts | list_namespaces({ filter: "Audio" }) | | search_docs | Full-text search in documentation summaries | search_docs({ query: "play sound" }) | | update_api_source | Update API data URL when S&box releases a new version | update_api_source({ url: "https://cdn.sbox.game/releases/..." }) |

Configuration

Environment variables (optional):

| Variable | Description | Default | |----------|-------------|---------| | SBOX_API_URL | Override the S&box API JSON URL | Latest known release | | SBOX_CACHE_DIR | Override cache directory | ~/.sbox-api-mcp/ |

Updating API Data

When S&box releases a new version, the API JSON URL changes. You can update it in two ways:

  1. From Claude Code: Use the update_api_source tool with the new URL
  2. Environment variable: Set SBOX_API_URL to the new URL

The URL format is: https://cdn.sbox.game/releases/YYYY-MM-DD-HH-MM-SS.zip.json

How It Works

On first startup, the server downloads the S&box API JSON (~9 MB) and caches it locally in ~/.sbox-api-mcp/. Subsequent startups use an ETag check to skip re-downloading if the data hasn't changed.

The API data is indexed in-memory using Fuse.js for fast fuzzy search across type names, member names, and documentation summaries.

License

MIT