MCP.so
Sign In

Remote MCP Server on Cloudflare

@Workman

About Remote MCP Server on Cloudflare

No overview available yet

Basic information

Category

Cloud & Infrastructure

Runtime

node

Transports

stdio

Publisher

Workman

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "remote-mcp-server-workman": {
      "command": "npx",
      "args": [
        "nx",
        "dev",
        "remote-mcp-server"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Remote MCP Server on Cloudflare?

A template for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It provides a fully functional MCP server that can be accessed remotely by MCP clients such as Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Connect using the MCP Inspector with SSE transport, then deploy to Cloudflare Workers using npm run deploy. Configure Claude Desktop by pointing its configuration to the local or remote SSE endpoint via the mcp-remote proxy command.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with OAuth authentication
  • Uses SSE (Server-Sent Events) transport
  • Supports local development and remote deployment
  • Includes OAuth login screen for secure access
  • Compatible with MCP Inspector and Claude Desktop
  • Easy deployment with npm run deploy

Use cases of Remote MCP Server on Cloudflare

  • Running an MCP server accessible from anywhere via a URL
  • Providing custom tools to Claude Desktop over a remote connection
  • Developing and testing MCP tools locally before deployment
  • Securing MCP server access with OAuth login

FAQ from Remote MCP Server on Cloudflare

How do I run this MCP server locally?

Clone the repo, install dependencies, and run npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.

How do I connect Claude Desktop to this server?

Add an entry to Claude Desktop's config file pointing to the SSE URL using the mcp-remote command, such as npx mcp-remote http://localhost:8787/sse for local or a workers.dev URL for remote.

How do I deploy to Cloudflare?

Create an OAuth KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy.

What transport does this server use?

The server uses SSE (Server-Sent Events) as its transport protocol.

Where does OAuth state data live?

OAuth state is stored in a Cloudflare KV namespace called OAUTH_KV. Local credentials can be cleared by deleting the ~/.mcp-auth directory.

Comments

More Cloud & Infrastructure MCP servers