activity-mcp

activity-mcp

3.4

This guide provides instructions for deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers without requiring authentication.

The guide outlines the process of deploying a remote MCP server on Cloudflare Workers, which does not require authentication. It provides a step-by-step approach to setting up the server using Cloudflare's deployment tools and customizing it with additional tools. The server can be connected to various platforms, such as the Cloudflare AI Playground and Claude Desktop, allowing users to leverage MCP tools in different environments. The guide also includes instructions for connecting to the server using the mcp-remote proxy, facilitating integration with local MCP clients.

Features

  • Deploy MCP server on Cloudflare Workers without authentication
  • Customize MCP server with additional tools
  • Connect to Cloudflare AI Playground
  • Integrate with Claude Desktop using mcp-remote proxy

Usage with Different Platforms

cloudflare_workers

bash
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless

claude_desktop


{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"  // or remote-mcp-server-authless.your-account.workers.dev/sse
      ]
    }
  }
}