MCP.so
登录

MCP Server with Cloudflare Workers

@sivakumarl

关于 MCP Server with Cloudflare Workers

MCP Server with Cloudflare Workers

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "my-mcp-worker": {
      "command": "npx",
      "args": [
        "create-cloudflare@latest",
        "my-mcp-worker"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

常见问题

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/).

评论

云与基础设施 分类下的更多 MCP 服务器