SuperBox Executor
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., "@SuperBox Executorrun the scrap_github_trending tool"
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.
SuperBox Executor
Remote MCP server executor built on Cloudflare Workers + Durable Objects.
Architecture
MCP Client (VS Code / Cursor / Antigravity / Claude Desktop / ChatGPT)
|
| POST /mcp?name=<server>
v
Cloudflare Worker (superbox-executor.workers.dev)
| validates name in R2 registry, routes to Durable Object by session ID
v
McpSession Durable Object (one per session)
| fetches Python source from GitHub, parses tools, runs on request
v
TypeScript interpreter -> executes tool functions -> returns JSON-RPC response
|
+-- outbound HTTP via native fetch (requests.get/post/put/patch/delete)
+-- JSON processing, dict/list ops, f-strings, common builtinsSetup
Prerequisites
Wrangler CLI (
npm i -g wrangler)Cloudflare account (
wrangler login)
1. Install dependencies
cd cloudflare
npm install2. Create R2 bucket
wrangler r2 bucket create superbox-mcp-registryFor local dev, the preview bucket is superbox-mcp-registry-dev:
wrangler r2 bucket create superbox-mcp-registry-dev3. Local development
npm run dev
# Worker available at http://localhost:87874. Deploy to production
npm run deploy
# URL: https://superbox-executor.<your-account>.workers.devCopy the deployed URL and set it in your backend .env:
CLOUDFLARE_WORKER_URL=https://superbox-executor.<your-account>.workers.devAPI
Health check
GET /healthMCP endpoint (Streamable HTTP, spec 2025-11-25)
POST /mcp?name=<server-name>
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"test","version":"0.0.1"}}}Test mode (skip registry, provide repo directly)
POST /mcp?name=my-test&test_mode=true&repo_url=https://github.com/user/repo&entrypoint=main.pyPython execution model
Tools are executed by a lightweight TypeScript interpreter built into the Worker. Cloudflare Workers cannot run Pyodide (WASM bundle exceeds the 10 MB script limit, and eval() / new Function() are blocked at the V8 level), so this interpreter handles the patterns that cover the vast majority of published MCP servers.
Supported
requests.get/post/put/patch/delete(mapped to nativefetch)Dict, list, string, and numeric operations
f-strings,
if/elif/else,forloops,try/exceptCommon builtins:
int,float,str,bool,len,min,max,range,enumerate,zipJSON serialization / deserialization
Not supported
httpx,aiohttp, or any HTTP library other thanrequestsPackages with C extensions (
pandas,numpy,cryptography, etc.)async def/awaitList/dict/set comprehensions
Class definitions
Complex stdlib usage (
os,subprocess,socket, etc.)
uv, pip, and poetry are package managers -- what matters is what they install. Servers that install requests-based packages work. Servers that install httpx, C-extension packages, or rely on async patterns do not.
Real-time logs
wrangler tail superbox-executor --format prettyThis server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/areebahmeddd/SuperBox-Executor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server