Remote MCP Server on Cloudflare
@liamyu2022
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-liamyu2022": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
A starter project to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login, enabling secure tool access from MCP clients.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Deploy to Cloudflare using npm run deploy after creating a KV namespace. Connect clients like the MCP Inspector or Claude Desktop by pointing them to the server’s SSE endpoint.
Key features of Remote MCP Server on Cloudflare
- Run MCP server locally or deploy to Cloudflare Workers
- Built-in OAuth authentication flow
- Uses SSE (Server-Sent Events) transport
- Works with MCP Inspector and Claude Desktop
- Easy configuration via
wrangler.jsoncand KV storage
Use cases of Remote MCP Server on Cloudflare
- Develop and test custom MCP tools in a local environment
- Deploy a remotely accessible MCP server with user login
- Integrate MCP tools with Claude Desktop for AI workflows
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. The server will be available at http://localhost:8787/.
How do I deploy the server to Cloudflare?
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?
Add an MCP server entry to your Claude config using npx mcp-remote with either the local URL (http://localhost:8787/sse) or the deployed workers.dev URL.
What transport protocol does the server use?
It uses SSE (Server-Sent Events) at the /sse endpoint. The MCP Inspector and mcp-remote connect via this URL.
How can I debug connection issues?
Restart Claude, try connecting directly with npx mcp-remote http://localhost:8787/sse, or clear ~/.mcp-auth if auth data is corrupted.
云与基础设施 分类下的更多 MCP 服务器
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
MCP Gateway
mcp-ecosystem🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.
AWS MCP Servers
awslabsOpen source MCP Servers for AWS
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
评论