🔒
mcpbox
Sandboxed MCP server host that runs tools as WASM components with capability-based isolation, fast cold starts, and strict failure isolation.
0 installs
Trust: 39 — Low
Security
Installation
npx mcpboxAsk AI about mcpbox
Powered by Claude · Grounded in docs
I know everything about mcpbox. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCPBox is a lightweight gateway that exposes local stdio-based MCP servers via Streamable HTTP, enabling Claude and other AI agents to connect from anywhere.
- Runs multiple servers behind a single HTTP endpoint
- Supports Tools, Resources & Prompts
- Namespaces with
servername__prefix to avoid collisions - Per-server tool filtering to limit AI access and reduce context usage
- OAuth 2.1, API key, or no auth
Quick Start
Create mcpbox.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
}
}
}
Run:
npx mcpbox
Add to your MCP client config:
{
"mcpServers": {
"mcpbox": {
"url": "http://localhost:8080"
}
}
}
Documentation
See the documentation for configuration, authentication, deployment, and connecting clients.
