Cloudflare Remote MCP Server (Authless)
Erstellen eines Remote-MCP-Servers auf Cloudflare (Ohne Authentifizierung)
Dieses Beispiel ermöglicht es Ihnen, einen zustandslosen Remote-MCP-Server bereitzustellen, der keine Authentifizierung auf Cloudflare Workers erfordert. Es implementiert die MCP-2026-07-28-Spezifikation und bleibt gleichzeitig mit Legacy-Clients für gewöhnliche Tool-Aufrufe kompatibel.
Erste Schritte:
Dadurch wird Ihr MCP-Server unter einer URL wie dieser bereitgestellt: remote-mcp-server-authless.<your-account>.workers.dev/mcp
Alternativ können Sie die folgende Befehlszeile verwenden, um den Remote-MCP-Server auf Ihrem lokalen Rechner zu erstellen:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authlessRelated MCP server: Cloudflare Remote MCP Server (Authless)
Anpassen Ihres MCP-Servers
Um Ihre eigenen Tools zum MCP-Server hinzuzufügen, registrieren Sie jedes Tool im McpServer, der in der Funktion createServer() in src/index.ts erstellt wurde, mit server.registerTool(...).
Mit Cloudflare AI Playground verbinden
Sie können von Cloudflare AI Playground, einem Remote-MCP-Client, eine Verbindung zu Ihrem MCP-Server herstellen:
Gehen Sie zu https://playground.ai.cloudflare.com/
Geben Sie Ihre bereitgestellte MCP-Server-URL ein (
remote-mcp-server-authless.<your-account>.workers.dev/mcp)Sie können Ihre MCP-Tools jetzt direkt aus dem Playground nutzen!
Claude Desktop mit Ihrem MCP-Server verbinden
Sie können auch von lokalen MCP-Clients eine Verbindung zu Ihrem Remote-MCP-Server herstellen, indem Sie den mcp-remote Proxy verwenden.
Um eine Verbindung von Claude Desktop zu Ihrem MCP-Server herzustellen, folgen Sie Anthropics Quickstart und gehen Sie in Claude Desktop zu Einstellungen > Entwickler > Konfiguration bearbeiten.
Aktualisieren Sie mit dieser Konfiguration:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/mcp" // or remote-mcp-server-authless.your-account.workers.dev/mcp
]
}
}
}Starten Sie Claude neu und Sie sollten sehen, dass die Tools verfügbar werden.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceEnables deploying a remote MCP server on Cloudflare Workers without authentication, supporting custom tools and integration with MCP clients like Claude Desktop.
- Flicense-qualityCmaintenanceEnables deployment of a remote MCP server on Cloudflare Workers without authentication, supporting custom tools and integration with clients like Claude Desktop.
- Flicense-qualityCmaintenanceEnables deployment of a remote MCP server on Cloudflare Workers without authentication, allowing tools to be connected to Cloudflare AI Playground or local clients like Claude Desktop.
- Flicense-qualityCmaintenanceEnables deploying a remote MCP server on Cloudflare Workers without authentication, allowing you to add custom tools and connect to MCP clients like AI Playground or Claude Desktop.1
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Cloudflare Workers MCP server: crypto-signal
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/youraibot1/remote-mcp-server-authless-1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server