Remote MCP Server on Cloudflare
@irvinebroque
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-irvinebroque": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
A guide and starter code to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login, enabling secure connections from AI clients like Claude Desktop over HTTP/SSE.
How to use Remote MCP Server on Cloudflare?
Clone the repository, run npm install and npm run dev to start a local server on localhost:8787. For production, create a KV namespace with npx wrangler@latest kv namespace create, add the ID to wrangler.jsonc, then run npm run deploy. Connect MCP clients (Inspector, Claude Desktop) using the /sse endpoint of your local or deployed URL.
Key features of Remote MCP Server on Cloudflare
- Deploy MCP server on Cloudflare Workers
- OAuth-based authentication for access
- Local development with hot‑reload (npm run dev)
- Connect via MCP Inspector or Claude Desktop
- Remote accessibility via workers.dev URL
Use cases of Remote MCP Server on Cloudflare
- Host custom MCP tools for remote AI assistants
- Enable Claude Desktop to call private APIs with login
- Build, test, and deploy MCP servers with OAuth
FAQ from Remote MCP Server on Cloudflare
What is the difference between local and remote setup?
Local runs on localhost:8787 during development; remote deploys to a workers.dev URL accessible over the internet.
What dependencies or runtime are needed?
Node.js and npm for local development. For deployment, a Cloudflare account and the Wrangler CLI.
Where does authentication data live?
OAuth state is stored in a Cloudflare KV namespace you create with npx wrangler@latest kv namespace create.
What transport protocol does this server use?
SSE (Server‑Sent Events) over HTTP, configured via the /sse endpoint of the server.
How can I debug connection problems?
Restart Claude or test directly with npx mcp-remote http://localhost:8787/sse. Clearing ~/.mcp-auth may also help in rare cases.
云与基础设施 分类下的更多 MCP 服务器
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
Cloudflare MCP Server
cloudflareAWS 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.
GCP MCP
eniayomiA Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your Google Cloud Platform environment. This allows for natural language querying and management of your GCP resources during conversations.
Kubernetes MCP Server
reza-gholizadeManage Your Kubernetes Cluster with k8s mcp-server
评论