- Home
- MCP servers
- Remote MCP Server (Authless Cloudflare)
Remote MCP Server (Authless Cloudflare)
- 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 your tools over a simple HTTP URL or host a local server you start yourself. This lets clients connect and use your MCP tools from environments like the Cloudflare AI Playground or Claude Desktop, without exposing your internal logic directly. This guide walks you through using, installing, and connecting to a Cloudflare-based remote MCP server.
How to use
Connect to your remote MCP server from an MCP client to access your tools in real time. You can deploy a Cloudflare-hosted MCP server or bootstrap a local one, then reach it via the provided HTTP endpoint.
From the Cloudflare AI Playground: open the playground and provide your MCP server URL to access and run your tools directly in the browser.
From Claude Desktop: you can use the mcp-remote proxy to connect to your MCP server. Use the example configuration shown below to wire your server into Claude Desktop.
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse" // or remote-mcp-server-authless.your-account.workers.dev/sse
]
}
}
}