- Home
- MCP servers
- Remote MCP Server Authless
Remote MCP Server Authless
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks 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 to MCP clients without requiring authentication, making it easy to experiment and connect from various clients. This server can be deployed on Cloudflare Workers and accessed by MCP clients to run available tools remotely.
How to use
Connect to your deployed MCP server from any MCP client by using the server’s URL and the standard tool access patterns supported by the MCP client. Once connected, you can invoke tools hosted on the remote server as if they were local capabilities. This enables you to perform actions, run computations, or fetch data through a centralized remote server without embedding the logic in every client.
How to install
Prerequisites you need before starting:
- Node.js is installed on your machine (recommended LTS version).
- npm is available to install and run packages.
- A working Cloudflare account is optional if you want to deploy to Cloudflare Workers.
Step by step commands to set up a remote MCP server on your local machine (based on the provided setup flow):
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
Available tools
custom_tool
Tools are added inside the init() method using this.server.tool(...). This allows you to define each remote capability exposed by the MCP server.