Remote MCP Server on Cloudflare
@admin-amaravati-io
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-admin-amaravati-io": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
Remote MCP Server on Cloudflare is a template for deploying a Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It lets you run a remote MCP server that clients like Claude Desktop or the MCP Inspector can connect to over SSE.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, 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 namespace ID to wrangler.jsonc, and run npm run deploy. Connect clients by pointing them to the server’s /sse endpoint.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers with OAuth authentication
- Supports local development with hot-reload via Nx
- Deployable to a public workers.dev URL
- Uses SSE (Server-Sent Events) transport for MCP
- Works with MCP Inspector and Claude Desktop
Use cases of Remote MCP Server on Cloudflare
- Run your own remote MCP server on Cloudflare’s edge network
- Connect Claude Desktop to a remotely hosted MCP server with OAuth login
- Test and debug MCP tools locally before deploying
- Provide a secure, authenticated MCP endpoint for other clients
FAQ from Remote MCP Server on Cloudflare
What do I need to run the server locally?
You need Node.js and npm installed. Clone the repository, run npm install, then npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.
How do I deploy to Cloudflare?
First create a KV namespace: npx wrangler kv namespace create OAUTH_KV. Add the returned namespace ID to wrangler.jsonc. Then run npm run deploy. Your server will be live at <worker-name>.<account>.workers.dev/sse.
How do I connect Claude Desktop to a remote MCP server?
Edit Claude Desktop’s config file (Settings > Developer > Edit Config) and add an entry using mcp-remote pointing to your server’s SSE URL, e.g., "command": "npx", "args": ["mcp-remote", "https://worker-name.account.workers.dev/sse"]. Restart Claude Desktop and log in when prompted.
What transport and authentication does the server use?
The server uses SSE (Server-Sent Events) for MCP transport and OAuth for authentication. Clients connect to the /sse endpoint and are redirected to a login screen.
How can I debug connection issues?
Try connecting directly with npx mcp-remote http://localhost:8787/sse (local) or the workers.dev URL. If persistent issues occur, clear the local auth cache with rm -rf ~/.mcp-auth and restart Claude.
云与基础设施 分类下的更多 MCP 服务器
AWS MCP
RafalWilinskiTalk with your AWS using Claude. Model Context Protocol (MCP) server for AWS. Better Amazon Q alternative.
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
K8s MCP Server
alexei-ledK8s-mcp-server is a Model Context Protocol (MCP) server that enables AI assistants like Claude to securely execute Kubernetes commands. It provides a bridge between language models and essential Kubernetes CLI tools including kubectl, helm, istioctl, and argocd, allowing AI syste
Mcp K8s Go
strowkMCP server connecting to Kubernetes
AWS Model Context Protocol (MCP) Server
alexei-ledA lightweight service that enables AI assistants to execute AWS CLI commands (in safe containerized environment) through the Model Context Protocol (MCP). Bridges Claude, Cursor, and other MCP-aware AI tools with AWS CLI for enhanced cloud infrastructure management.
评论