MCP Server with Cloudflare Workers
@sivakumarl
About MCP Server with Cloudflare Workers
MCP Server with Cloudflare Workers
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"my-mcp-worker": {
"command": "npx",
"args": [
"create-cloudflare@latest",
"my-mcp-worker"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is MCP Server with Cloudflare Workers?
MCP Server with Cloudflare Workers enables AI agents and assistants to interact with services via the Model Context Protocol (MCP). It uses Cloudflare Workers and the workers-mcp package to build scalable MCP servers that expose APIs to AI assistants.
How to use MCP Server with Cloudflare Workers?
Create a new Worker project with npx create-cloudflare@latest, install the workers-mcp package, and run npx workers-mcp setup. Write MCP methods in src/index.ts using WorkerEntrypoint and ProxyToSelf. Deploy with npx wrangler deploy, test locally with npx workers-mcp proxy, and secure with npx wrangler secret put MCP_SECRET.
Key features of MCP Server with Cloudflare Workers
- Build MCP servers using Cloudflare Workers
- Uses workers-mcp package for MCP compliance
- ProxyToSelf ensures protocol adherence
- Deploy globally on Cloudflare’s edge network
- Integrate with external APIs easily
- Secure with shared-secret authentication
Use cases of MCP Server with Cloudflare Workers
- Expose a personalized greeting tool for AI assistants
- Fetch and return weather data from an external API
- Allow AI agents to query any existing REST API
- Create custom MCP tools for private services
FAQ from MCP Server with Cloudflare Workers
What are the prerequisites for using MCP Server with Cloudflare Workers?
You need a Cloudflare account, Node.js, and the Wrangler CLI installed (npm install -g wrangler).
How do I test my MCP server locally?
Run npx workers-mcp proxy to start a local proxy that MCP clients like Claude Desktop can connect to.
How can I secure my MCP server?
Use npx wrangler secret put MCP_SECRET to add a shared-secret authentication mechanism.
How do I deploy the MCP server?
Run npx wrangler deploy to deploy your Worker; afterward, use npm run deploy to redeploy updates.
Where can I find more details about building MCP servers with Cloudflare Workers?
Refer to the Cloudflare MCP documentation.
Frequently asked questions
What are the prerequisites for using MCP Server with Cloudflare Workers?
You need a Cloudflare account, Node.js, and the Wrangler CLI installed (`npm install -g wrangler`).
How do I test my MCP server locally?
Run `npx workers-mcp proxy` to start a local proxy that MCP clients like Claude Desktop can connect to.
How can I secure my MCP server?
Use `npx wrangler secret put MCP_SECRET` to add a shared-secret authentication mechanism.
How do I deploy the MCP server?
Run `npx wrangler deploy` to deploy your Worker; afterward, use `npm run deploy` to redeploy updates.
Where can I find more details about building MCP servers with Cloudflare Workers?
Refer to the [Cloudflare MCP documentation](https://developers.cloudflare.com/agents/guides/build-mcp-server/).
Basic information
More Cloud & Infrastructure MCP servers
🐋 Docker MCP server
ckreilingMCP server for Docker
Mcp K8s Go
strowkMCP server connecting to Kubernetes
🐳 docker-mcp
QuantGeekDevA docker MCP Server (modelcontextprotocol)
AWS MCP Servers
awslabsOpen source MCP Servers for AWS
MCP Server that interacts with Azure AI Foundry (experimental)
azure-ai-foundryA MCP Server for Azure AI Foundry: it's now moved to cloud, check the new Foundry MCP Server
Comments