esa MCP Worker
Click on "Deploy 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., "@esa MCP Workersearch for posts about API design in the dev team"
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.
esa MCP Worker
A vendor-neutral Remote MCP server for esa on Cloudflare Workers. It exposes read, write, context, audit, admin, optional transcription, and optional GitHub implementation tools to MCP clients.
What it provides
/mcp-fast: a small read-only catalog for normal context lookup/mcp: the complete catalog for writes, maintenance, transcription, and GitHub syncOAuth with PKCE, Dynamic Client Registration, and single-use authorization codes
bounded reads, section patches, bulk operations, caching, and concurrent requests
an admin page for access, audit, connections, and context-observer management
Related MCP server: basecamp-mcp
Requirements
Node.js 24.11 or later
pnpm 10.11.1
a Cloudflare account
an esa access token
Setup
Install dependencies.
pnpm install --frozen-lockfile pnpm verifyCreate a Workers KV namespace and a D1 database in Cloudflare. Replace the two placeholder IDs in
wrangler.jsoncwith the IDs from your account.pnpm exec wrangler kv namespace create MCP_CONFIG pnpm exec wrangler d1 create esa-mcp-worker-oauth-codes pnpm exec wrangler d1 migrations apply esa-mcp-worker-oauth-codes --remoteIn Cloudflare
Workers & Pages > Settings > Variables and Secrets, add the values shown in.dev.vars.example. At minimum, configure:ESA_DEFAULT_TEAM ESA_CONTEXT_ENTRY_POST_NUMBER MCP_ADMIN_USERNAME MCP_OAUTH_ALLOWED_REDIRECT_HOSTS MCP_BEARER_TOKEN secret MCP_OAUTH_PASSCODE secret MCP_ADMIN_PASSWORD secretUse long random values for all three secrets. GitHub implementation sync is optional. The OpenAI API key for transcription is entered during OAuth and is not a deployment variable.
Deploy.
pnpm run deploy
For Cloudflare Workers Builds, use:
Build command: pnpm verify
Deploy command: pnpm run deploy
Non-production deploy command: pnpm run deploy:previewConnect an MCP client
Use one endpoint at a time to keep the tool catalog small:
Read-only: https://YOUR-WORKER.workers.dev/mcp-fast
Full: https://YOUR-WORKER.workers.dev/mcp
Admin: https://YOUR-WORKER.workers.dev/adminPrefer Dynamic Client Registration. For a manual OAuth client, use token
endpoint authentication method none, PKCE S256, and these endpoints:
Authorization: https://YOUR-WORKER.workers.dev/oauth/authorize
Token: https://YOUR-WORKER.workers.dev/oauth/token
Registration: https://YOUR-WORKER.workers.dev/oauth/registerScopes are esa:read for /mcp-fast and esa:read esa:write for /mcp.
Reconnect a client after the public tool catalog changes.
Security
Do not commit .dev.vars, .env, real Cloudflare resource IDs, tokens, or
private keys. The Worker encrypts esa and optional OpenAI credentials into the
signed OAuth access token and does not store their plaintext in KV. Write tools
also require confirm_write: true.
See SECURITY.md for vulnerability reporting and docs/reference.md for tools, configuration, errors, performance, and the optional GitHub workflow.
License
MIT Copyright (c) 2026 Ierllow
This server cannot be deployed
Maintenance
Related MCP Connectors
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Create, schedule, and publish social posts, manage accounts, and read analytics as MCP tools.
Notes, files, GitHub, and Drive through one MCP connection.
Notes, files, GitHub, and Drive through one MCP connection.
Related MCP Servers
- AlicenseCqualityCmaintenanceProvides MCP (Model Control Protocol) tools for accessing and interacting with Google Chat spaces and messages through OAuth2 authentication.523MIT
- AlicenseNot gradedqualityDmaintenanceMCP server exposing Basecamp CLI commands as tools for project management, todos, messages, and more.MIT
- AlicenseNot gradedqualityBmaintenanceMCP server providing maximum practical control over GitHub via REST and GraphQL APIs, exposing 22 tools for repository management, file operations, issues, PRs, Actions, and more.MIT
- AlicenseNot gradedqualityCmaintenanceProvides read-only access to GitHub repositories and issues through standardized MCP tools, with caching to handle API rate limits.1MIT