### Deploy Remote MCP Server using Cloudflare CLI Source: https://github.com/vaibhavkharatmal-shreemaruti/remote-mcp-server-authless/blob/main/README.md Use this command to initialize a new Cloudflare Workers project for the remote MCP server on your local machine, leveraging the `npm create cloudflare` command with the specified template. ```bash npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless ``` -------------------------------- ### Configure Claude Desktop for Remote MCP Server Connection Source: https://github.com/vaibhavkharatmal-shreemaruti/remote-mcp-server-authless/blob/main/README.md This JSON configuration snippet updates Claude Desktop's settings to enable connection to a remote MCP server. It defines an MCP server named 'calculator' and specifies the `mcp-remote` proxy command to connect to the server URL. ```json { "mcpServers": { "calculator": { "command": "npx", "args": [ "mcp-remote", "http://localhost:8787/sse" // or remote-mcp-server-authless.your-account.workers.dev/sse ] } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.