Amika MCP Server
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., "@Amika MCP Serverlist my sandboxes"
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.
Amika MCP Server
A remote MCP server for Amika: manage your sandboxes and agent sessions from any MCP client — including the Claude mobile app, so you can check on and steer your coding agents from your phone.
You deploy your own instance to Cloudflare Workers (free tier is plenty) with your own Amika API key. Nothing is shared: your key stays in your worker.
Tools
Tool | What it does |
| List all sandboxes with their state |
| Details/state of one sandbox |
| Start or stop a sandbox (waits for the state change) |
| List agent sessions in a sandbox |
| Most recent session in a sandbox |
| Fetch one session by id |
| Create an empty session with optional metadata |
| Update a session's status/metadata (e.g. mark completed) |
| Send a message to the Claude/Codex agent in a sandbox and wait for the reply — resumes the latest session by default, or pass |
Related MCP server: claude-bridge-mcp
Deploy
One-click
Click Deploy to Cloudflare above. Cloudflare copies this repo into your GitHub account and creates a Worker that redeploys on every push.
Add two secrets to the worker (dashboard → your worker → Settings → Variables and Secrets, type Secret):
AMIKA_API_KEY— generate at app.amika.dev/settings (API Key section)MCP_PATH_SECRET— a long random string, e.g. fromopenssl rand -hex 24
Your MCP endpoint is:
https://<worker-name>.<your-subdomain>.workers.dev/<MCP_PATH_SECRET>/mcpCLI
git clone https://github.com/Neolithic/amika-mcp
cd amika-mcp && npm install
npx wrangler login # or: export CLOUDFLARE_API_TOKEN=<token>
npx wrangler secret put AMIKA_API_KEY
npx wrangler secret put MCP_PATH_SECRET
npm run deployIf wrangler login's browser flow can't reach you (headless/remote machine), create an
API token with the "Edit Cloudflare Workers" template at
dash.cloudflare.com/profile/api-tokens
and set CLOUDFLARE_API_TOKEN instead.
Connect a client
Claude (including the mobile app) — requires a Pro/Max/Team plan:
claude.ai/settings/connectors → Add custom connector → name it
Amika, paste your full endpoint URL (including the secret segment). Leave the OAuth fields empty.In any Claude app (web, desktop, mobile), enable the connector in the tools menu and ask things like "list my amika sandboxes" or "send 'run the tests' to the agent in dev-box".
Claude Code:
claude mcp add --transport http amika https://<worker>/<secret>/mcpAny other MCP client that speaks Streamable HTTP works the same way.
Security model
Single-tenant by design. Each deployment serves exactly one Amika account. The worker holds your
AMIKA_API_KEYas a Cloudflare secret; it is never sent to clients.The URL is the credential. There is no OAuth — the endpoint is guarded by the secret path segment. Treat the full URL like a password: don't share it, don't post screenshots of it, and rotate it if it leaks (
wrangler secret put MCP_PATH_SECRET, or edit it in the dashboard).Never share your deployed endpoint with other people. Anyone with the URL has full control of your Amika account's sandboxes and agents. Other users should deploy their own instance — that's what the button is for.
Requests with a wrong or missing path secret get a
404without touching the Amika API.
Local development
cp .dev.vars.example .dev.vars # fill in AMIKA_API_KEY and MCP_PATH_SECRET
npm run dev # serves http://localhost:8787/<secret>/mcp
npm run typecheckNotes & limitations
send_to_agentblocks until the agent finishes (Amika's endpoint is synchronous with a 10-minute timeout). Long agent runs may exceed your MCP client's own tool timeout — the work still continues inside Amika; check back withget_latest_session.The Amika SDK stores an unbound
fetchreference, which throws "Illegal invocation" on Workers. The client passesfetch: (input, init) => fetch(input, init)to work around it (src/index.ts) — don't remove it.Built with
@amika/sdk, the MCP TypeScript SDK, and Cloudflare'sagentsframework (Streamable HTTP viaMcpAgent).
License
This server cannot be installed
Maintenance
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
- 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/Neolithic/amika-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server