Remote MCP Server on Cloudflare
@anniandnevi
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-anniandnevi": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
Remote MCP Server on Cloudflare is a guide and reference implementation for deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It helps developers run MCP servers that can be accessed over HTTP and authenticated, and then connect them to clients such as the MCP Inspector or Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies with npm install, and run locally with npx nx dev remote-mcp-server. To deploy, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the ID to wrangler.jsonc, and run npm run deploy. Connect clients such as the MCP Inspector by pointing it to the SSE endpoint at /sse, or configure Claude Desktop by adding an mcpServers entry that uses npx mcp-remote with the server’s URL.
Key features of Remote MCP Server on Cloudflare
- Deploy MCP server on Cloudflare Workers
- OAuth login integration for authentication
- Supports SSE (Server-Sent Events) transport
- Connect via the MCP Inspector
- Connect to Claude Desktop via local proxy
- Deploy with Wrangler CLI in a few steps
Use cases of Remote MCP Server on Cloudflare
- Running a custom MCP tool server hosted on Cloudflare Workers
- Providing OAuth‑protected MCP endpoints to remote clients
- Testing MCP server behavior locally with the MCP Inspector
- Integrating an MCP server with Claude Desktop over HTTP
- Developing and iterating on MCP tools before production deployment
FAQ from Remote MCP Server on Cloudflare
What runtime and dependencies are required?
You need Node.js and npm. The repository provides a package.json and uses npx for running commands like the MCP Inspector and the local proxy.
How do I deploy the server to Cloudflare?
Use Wrangler CLI. First create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, then run npm run deploy.
How do I connect Claude Desktop to the server?
Edit the Claude Desktop configuration file (found in Settings > Developer > Edit Config) and add an mcpServers entry that uses npx mcp-remote with your server’s URL (e.g., http://localhost:8787/sse locally or https://worker-name.account-name.workers.dev/sse after deployment). Restart Claude Desktop.
Does the server include authentication?
Yes. The server includes an OAuth login flow. When connecting via the MCP Inspector or Claude Desktop, a browser window opens allowing you to log in (locally a mock login is used; deployed it requires real OAuth).
What transport does the server use?
The server uses SSE (Server-Sent Events) as the transport protocol. The endpoint for connecting is <server-url>/sse.
云与基础设施 分类下的更多 MCP 服务器
Cloudflare MCP Server
cloudflare🐋 Docker MCP server
ckreilingMCP server for Docker
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.

Aws Kb Retrieval Server
modelcontextprotocolModel Context Protocol Servers
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
评论