- Home
- MCP servers
- Remote MCP Server Authless
Remote MCP Server Authless
- typescript
0
GitHub Stars
typescript
Language
6 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 tools over a standard MCP interface and connect to it from various MCP clients. This setup lets you quickly deploy a minimal, authless remote server and use its tools from playgrounds or local clients.
How to use
You access your remote MCP server from an MCP client by pointing the client at the server’s SSE endpoint. In practice, you can connect via the Cloudflare AI Playground to experiment with your own tools directly in a browser, or you can connect from local clients such as Claude Desktop using a small proxy configuration.
How to install
Prerequisites: You need Node.js and npm installed on your machine.
Install and run the remote MCP server using the provided creation command. This deploys the server to a Cloudflare Workers URL you own.
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
Additional notes
To customize your MCP server, add your own tools inside the server’s init method by calling the tool registration API (for example, this.server.tool(...) in the server code).