sbox-mcp-documentation
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sbox-mcp-documentationshow me the documentation for networking"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sbox-mcp-documentation
An MCP (Model Context Protocol) server that provides AI assistants with searchable access to the full s&box game engine documentation — 180+ pages of guides, tutorials, and concepts — plus the complete API reference with 1,800+ types and 15,000+ members.
Quick Start
No installation required — use npx directly in your MCP config:
{
"servers": {
"sbox-docs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "sbox-mcp-documentation"]
}
}
}Or install globally:
npm install -g sbox-mcp-documentationRelated MCP server: Dedalus MCP Documentation Server
Features
Documentation
Full-text search across all s&box documentation with fuzzy matching and relevance ranking
Direct page retrieval with chunked reading for large pages
Category browsing to discover available documentation topics
API Reference
API type search across 1,800+ public types (classes, structs, enums, interfaces) with member-aware ranking
Detailed type lookup — methods, properties, fields, events, XML doc comments, and inheritance info
Chunked output for large types so no detail is truncated
General
Automatic caching — docs cached for 4 hours, API schema cached for 24 hours
Background indexing on startup — both subsystems ready within seconds
Built-in self-tests to verify the server is working correctly
Data Sources
Documentation
Documentation is fetched from the official s&box wiki via the LLM-optimized index at sbox.game/llms.txt. This file lists all available documentation pages, and each page is fetched as raw Markdown from sbox.game/dev/doc/{page}.md. The server crawls all listed pages and builds a local search index using MiniSearch.
API Reference
The API schema is downloaded from the Facepunch CDN as a JSON file (the same data powering sbox.game/api). It contains all public types from the s&box assembly — 1,800+ types with full member signatures, XML doc comments, and inheritance info. The server strips internal/compiler-generated types and indexes everything with MiniSearch for fast fuzzy lookup.
Installation
Option 1: npx (recommended)
No install needed. Just reference npx sbox-mcp-documentation in your MCP configuration (see below).
Option 2: Global install
npm install -g sbox-mcp-documentationOption 3: From source
git clone https://github.com/fiedlermarius/sbox-mcp-documentation.git
cd sbox-mcp-documentation
npm install
npm run buildConfiguration
VS Code (GitHub Copilot)
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"sbox-docs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "sbox-mcp-documentation"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"sbox-docs": {
"command": "npx",
"args": ["-y", "sbox-mcp-documentation"]
}
}
}Claude Desktop
Add to your Claude Desktop config (%APPDATA%/Claude/claude_desktop_config.json on Windows):
{
"mcpServers": {
"sbox-docs": {
"command": "npx",
"args": ["-y", "sbox-mcp-documentation"]
}
}
}Local Checkout Example
If you want to use a local checkout instead of npx, update your configuration as follows:
{
"servers": {
"sbox-docs": {
"type": "stdio",
"command": "node",
"args": ["<path-to-repo>/dist/index.js"]
}
}
}As shown above, you need to replace "command": "npx" and "args" with "command": "node" and "args": ["<path-to-repo>/dist/index.js"].
Tools
Tool | Description |
| Search documentation with fuzzy matching. Returns titles, URLs, categories, and relevant snippets. Supports category filtering and result limits. |
| Fetch a specific documentation page as Markdown. Supports chunked reading via |
| List all documentation categories with page counts. Useful for discovering what topics are available. |
| Search the s&box API reference by type name, namespace, or keyword. Returns matching types with namespace, description, and top member names. |
| Get full details for a specific API type — all methods, properties, fields, events, XML doc comments, and inheritance. Supports chunked output for large types. |
| Show cache and index health — page counts, freshness, and whether both docs and API indexing are complete. |
| Run built-in self-tests for all six modules (cache, search, crawler — docs and API). Returns pass/fail results per test case. |
Architecture
sbox.game/llms.txt (doc index) cdn.sbox.game (AssemblySchema JSON)
│ │
▼ ▼
DocCrawler ──► GET /llms.txt ApiCrawler ──► resolves schema URL
│ GET /dev/doc/*.md │ downloads + filters types
│ │
▼ ▼
DocCache ──► ~/.sbox-docs-mcp/cache/ ApiCache ──► ~/.sbox-docs-mcp/cache/
│ manifest.json (TTL 4h) │ api-types.json (TTL 24h)
│ │
▼ ▼
DocSearch ──► MiniSearch index ApiSearch ──► MiniSearch index
title (3x), category (2x), name (4x), fullName (3x),
content (1x) members (2x), namespace (1.5x)Cache Behavior
Location:
~/.sbox-docs-mcp/cache/Docs TTL: 4 hours (configurable via
SBOX_DOCS_CACHE_TTLenv var, in seconds)API TTL: 24 hours — the schema is large (~9 MB) and changes infrequently
Custom directory: Set
SBOX_DOCS_CACHE_DIRenv varBoth caches are populated on server startup in the background
Set
SBOX_API_SCHEMA_URLto pin a specific schema version
Related Projects
Facepunch.AssemblySchema — the schema format this server uses for API reference data
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that provides comprehensive xAI/Grok API documentation, allowing AI assistants to search bundled guides, fetch live documentation, and browse API endpoints or model specifications.13
- AlicenseAqualityDmaintenanceAn MCP server that serves documentation and enables AI-powered search, Q\&A, and document analysis for developer tools and guides.54MIT
- Alicense-qualityFmaintenanceA game development MCP server with 950+ curated docs across 29 engines and 5 power tools for scaffolding, debugging, design, and scope tracking. It connects to any AI supporting the Model Context Protocol.3MIT
- AlicenseBqualityAmaintenanceMCP server for Forge Minecraft modding documentation. Gives AI assistants direct access to Forge docs with structured search results.5171MIT
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that gives your AI access to the source code and docs of all public github repos
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fiedlermarius/sbox-mcp-documentation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server