Remote MCP Server on Cloudflare
@Niell007
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-niell007": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
A guide and template for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to host MCP servers that can be accessed remotely by MCP clients like Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Connect the MCP Inspector by selecting SSE transport and entering http://localhost:8787/sse as the server URL. For Claude Desktop, configure the MCP server with npx mcp-remote http://localhost:8787/sse. Deploy to Cloudflare using npm run deploy after creating a KV namespace.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers for global deployment.
- Includes OAuth login for authentication.
- Uses SSE (Server-Sent Events) transport.
- Supports local development with MCP Inspector.
- Integrates directly with Claude Desktop.
- Stores OAuth state in Cloudflare KV.
Use cases of Remote MCP Server on Cloudflare
- Host custom MCP tools securely on the internet.
- Let Claude Desktop call remote tools via OAuth login.
- Test MCP server logic locally before production deployment.
- Provide a public MCP endpoint for multiple clients.
FAQ from Remote MCP Server on Cloudflare
How do I run the server locally?
Clone the repo, run npm install, then npx nx dev remote-mcp-server. Open http://localhost:8787/ in your browser.
What transport does the server use?
The server uses SSE (Server-Sent Events). Connect clients to /sse endpoint.
How do I connect Claude Desktop to my remote server?
Add a configuration entry to Claude's config file using npx mcp-remote https://your-worker.workers.dev/sse as the command and args.
How do I deploy to Cloudflare?
First create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy.
How can I debug connection issues?
Restart Claude, or test directly with npx mcp-remote http://localhost:8787/sse. If needed, clear cached auth files with rm -rf ~/.mcp-auth.
云与基础设施 分类下的更多 MCP 服务器
🐳 docker-mcp
QuantGeekDevA docker MCP Server (modelcontextprotocol)
AWS MCP
RafalWilinskiTalk with your AWS using Claude. Model Context Protocol (MCP) server for AWS. Better Amazon Q alternative.
Supabase MCP Server
coleam00Supabase MCP server created in Python.
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
评论