Remote MCP Server (Authless)
by tomkingchen
This is an example of deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers without requiring authentication. It allows you to connect to the server from the Cloudflare AI Playground or local MCP clients like Claude Desktop.
Last updated: N/A
What is Remote MCP Server (Authless)?
This is a remote MCP server that can be deployed on Cloudflare Workers. It allows you to expose tools to MCP clients like the Cloudflare AI Playground or Claude Desktop without requiring authentication.
How to use Remote MCP Server (Authless)?
You can deploy the server using the 'Deploy to Workers' button or via the command line using npm create cloudflare@latest
. After deployment, you can connect to it using the deployed URL from the Cloudflare AI Playground or configure Claude Desktop to use it via the mcp-remote proxy.
Key features of Remote MCP Server (Authless)
Authless deployment
Cloudflare Workers integration
MCP compatibility
Tool customization
Integration with Cloudflare AI Playground
Integration with Claude Desktop
Use cases of Remote MCP Server (Authless)
Exposing custom tools to AI models
Connecting local AI clients to remote tools
Building AI applications on Cloudflare
Testing and experimenting with MCP
Creating a centralized tool repository
FAQ from Remote MCP Server (Authless)
What is MCP?
What is MCP?
MCP stands for Model Context Protocol, a standard for connecting AI models to external tools.
What is Cloudflare Workers?
What is Cloudflare Workers?
Cloudflare Workers is a serverless platform that allows you to deploy and run code on Cloudflare's global network.
How do I add my own tools to the MCP server?
How do I add my own tools to the MCP server?
You can add tools by defining them inside the init()
method of src/index.ts
using this.server.tool(...)
.
How do I connect to the server from the Cloudflare AI Playground?
How do I connect to the server from the Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/ and enter your deployed MCP server URL.
How do I connect to the server from Claude Desktop?
How do I connect to the server from Claude Desktop?
Use the mcp-remote proxy and update the Claude Desktop configuration as described in the README.