cinch-mcp
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., "@cinch-mcpRun this Python code and show output: print(2**10)"
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.
@cinch-codes/mcp
MCP server for Cinch. Gives your AI assistant a real sandbox to run code in.
Without it, an assistant writes code and you run it yourself. With it, the assistant runs the code and reads the actual output — inside a gVisor-isolated container on Cinch's infrastructure, with no access to your machine, filesystem, or local network.
Pay per execution. No subscription floor.
Setup
Get an API key at cinch.codes, then add the server to your MCP client.
Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"cinch": {
"command": "npx",
"args": ["-y", "@cinch-codes/mcp"],
"env": {
"CINCH_API_KEY": "cinch_live_..."
}
}
}
}Claude Desktop on Windows — same file, but Windows can't spawn npx directly, so wrap it with cmd /c:
{
"mcpServers": {
"cinch": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@cinch-codes/mcp"],
"env": {
"CINCH_API_KEY": "cinch_live_..."
}
}
}
}Claude Code (macOS/Linux):
claude mcp add --scope user cinch -e CINCH_API_KEY=cinch_live_... -- npx -y @cinch-codes/mcpClaude Code (Windows):
claude mcp add --scope user cinch -e CINCH_API_KEY=cinch_live_... -- cmd /c npx -y @cinch-codes/mcpCursor — .cursor/mcp.json, same shape as the Claude Desktop config above.
Restart the client. That's it — no install step, npx fetches it on first run.
Related MCP server: Capsule server
What it exposes
execute_code
Runs a self-contained Python or JavaScript program and returns stdout, stderr, exit code, and duration.
Parameter | Type | Default | Description |
| string | — | The complete program to run. Must print to stdout to return anything. |
|
|
| Runtime to execute in. |
Each call gets a clean sandbox. State does not persist between calls, so every snippet needs to stand on its own.
The sandbox environment
Deliberately minimal. Worth knowing before you wonder why an import failed:
Runtimes | Python 3.12, Node 20 |
Packages | Standard library only. No pip or npm packages are installed, and none can be installed at runtime. |
Network | None. HTTP, DNS, and package installs all fail. |
Filesystem | Root is read-only. |
Memory | 256 MB |
CPU | 0.5 cores |
Time limit | 10 seconds |
Isolation | gVisor ( |
The tool description tells the model all of this up front, so it writes stdlib-only code instead of reaching for numpy and failing on the first call.
Configuration
Variable | Required | Default | Description |
| yes | — | Your Cinch API key. |
| no |
| Client-side timeout in ms. The API caps execution at 10s regardless. |
| no |
| Override the API endpoint. |
Troubleshooting
Windows: "Failed to connect" in claude mcp list — you're missing the cmd /c wrapper. Windows resolves npx to a batch script that can't be spawned directly; re-add the server using the Windows command above.
Windows: npm error ENOENT ... AppData\Roaming\npm — some Node installs never create npm's global folder, and npx refuses to run without it. Create it once and retry:
mkdir %APPDATA%\npmServer exits immediately with "CINCH_API_KEY is not set" — the env var didn't reach the server. In Claude Code, put -e CINCH_API_KEY=... before the server name in claude mcp add. In config files, check the env block is inside the cinch entry.
Debugging any connection failure — run the server directly to see the real error instead of a generic status:
CINCH_API_KEY=cinch_live_... npx -y @cinch-codes/mcp # macOS/Linuxset CINCH_API_KEY=cinch_live_... && cmd /c npx -y @cinch-codes/mcp # WindowsCorrect behavior is cinch-mcp ... ready followed by silence — an MCP server waits for a client. Anything else printed is the actual failure.
Why sandboxed execution
Code written by a model is untrusted code — nothing reviewed it before it ran. Executing it directly on your machine means handing it your filesystem, your network, and your credentials. Cinch runs it somewhere else entirely, in a disposable container with kernel-level isolation, and sends back only the output.
Notes
Requires Node 18 or newer.
Output is capped at 20,000 characters per stream to protect your context window; anything beyond that is truncated with a marker.
Runs that time out or exit non-zero are returned as tool errors, so the assistant knows the code failed and can correct it.
Out-of-credit responses are surfaced clearly and instruct the assistant not to retry, so a drained balance does not turn into a retry loop.
Links
JS/TS SDK:
@cinch-codes/pangolinPython SDK:
pangolin-sdk
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityDmaintenanceA secure Model Context Protocol server that allows AI assistants and LLM applications to safely execute Python and JavaScript code snippets in containerized environments.Last updated2200MIT
- AlicenseAqualityCmaintenanceCapsule MCP server gives your AI agent the ability to safely run untrusted Python and JavaScript code in a secure WebAssembly sandbox.Last updated233293Apache 2.0
- Alicense-qualityCmaintenanceProduction-grade MCP server that enables AI assistants to execute code securely in isolated E2B sandboxes.Last updatedApache 2.0
- Alicense-qualityDmaintenanceAn MCP server that provides secure code execution capabilities using AWS Bedrock AgentCore's CodeInterpreter, supporting Python, JavaScript, TypeScript, shell commands, and file operations.Last updated0MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
An MCP server that gives your AI access to the source code and docs of all public github repos
An MCP server for Arcjet - the runtime security platform that ships with your AI code.
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/yusufkadry/cinch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server