- Home
- MCP servers
- Remote MCP Server Authless
Remote MCP Server Authless
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can run a remote MCP server that exposes its tools over HTTP via Cloudflare Workers and also supports local clients through a proxy, enabling you to use your own tools with MCP clients and play with them in environments like the Cloudflare AI Playground or Claude Desktop.
How to use
Connect to your remote MCP server from an MCP client to run your tools anywhere. You can use the Cloudflare AI Playground to experiment with your server’s tools directly in the browser, or you can connect from local clients using the mcp-remote proxy.
How to install
Prerequisites: ensure you have Node.js and npm installed on your machine.
How to install
Install and bootstrap a remote MCP server based on the available template. Run the following command to create the MCP server project using the remote-authless Cloudflare template.
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
How to install
Once created, you can deploy or run the server locally according to your Cloudflare setup. The template provides a ready-made remote MCP server that does not require authentication.
Additional content
Connect to Cloudflare AI Playground using the URL you deploy, then paste the remote MCP server URL when prompted. You can also connect Claude Desktop to your MCP server via the mcp-remote proxy by configuring the server entry under Settings > Developer > Edit Config with the following details.
Additional content
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}