Remote MCP Server (Authless)
by felipe-parra
This is an example of deploying a remote 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 Model Context Protocol (MCP) server that can be deployed on Cloudflare Workers. It provides a server that can host AI tools and be accessed by MCP clients.
How to use Remote MCP Server (Authless)?
- Deploy the server to Cloudflare Workers using the provided 'Deploy to Workers' button or the command line. 2. Customize the server by adding your own tools within the
init()
method ofsrc/index.ts
. 3. Connect to the server from the Cloudflare AI Playground by entering the deployed server URL. 4. Alternatively, connect from local MCP clients like Claude Desktop using themcp-remote
proxy.
Key features of Remote MCP Server (Authless)
Authless deployment
Easy deployment to Cloudflare Workers
Customizable with your own tools
Connects to Cloudflare AI Playground
Supports local MCP clients like Claude Desktop
Use cases of Remote MCP Server (Authless)
Hosting AI tools for use in the Cloudflare AI Playground
Connecting Claude Desktop to custom AI tools
Creating a serverless AI tool platform
Experimenting with the Model Context Protocol
FAQ from Remote MCP Server (Authless)
What is MCP?
What is MCP?
MCP stands for Model Context Protocol, a standard for connecting AI models with tools and applications.
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 tools to the MCP server?
How do I add tools to the MCP server?
You can add tools by defining them inside the init()
method of src/index.ts
using this.server.tool(...)
.
Can I use this server with other MCP clients besides the Cloudflare AI Playground and Claude Desktop?
Can I use this server with other MCP clients besides the Cloudflare AI Playground and Claude Desktop?
Yes, you can use this server with any MCP client that supports connecting to a remote MCP server.
Is this server secure?
Is this server secure?
This example is authless, meaning it doesn't require authentication. For production environments, consider adding authentication to secure your MCP server.