MCP.so
Sign In

Remote MCP Server on Cloudflare

@LiTschii

About Remote MCP Server on Cloudflare

No overview available yet

Basic information

Category

Cloud & Infrastructure

Runtime

node

Transports

stdio

Publisher

LiTschii

Config

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

{
  "mcpServers": {
    "remote-mcp-server-litschii": {
      "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 complete local development setup, deployment instructions, and guidance for connecting MCP Inspector or Claude Desktop to the server over SSE.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies with npm install, and run locally using npx nx dev remote-mcp-server (opens on http://localhost:8787/). Connect MCP Inspector or Claude Desktop by pointing them to the /sse endpoint, or deploy to Cloudflare with npm run deploy after creating an OAUTH_KV namespace.

Key features of Remote MCP Server on Cloudflare

  • Deploy a remote MCP server on Cloudflare Workers
  • OAuth login for secure access
  • SSE transport for remote clients
  • Connect to MCP Inspector for tool testing
  • Connect to Claude Desktop via mcp-remote proxy
  • Works with both local and deployed Workers

Use cases of Remote MCP Server on Cloudflare

  • Build and test a custom MCP server locally before deployment
  • Host a publicly accessible MCP server on Cloudflare Workers
  • Integrate MCP tools with Claude Desktop over the internet
  • Debug and validate tools using the MCP Inspector

FAQ from Remote MCP Server on Cloudflare

What runtime or dependencies are required?

Node.js is needed to run the local development and deployment scripts (nx, wrangler). The server itself runs on Cloudflare Workers.

How does authentication work?

The server includes OAuth login. During local development, a mock login screen accepts any email and password. When deployed, proper OAuth flows apply.

Where are OAuth tokens stored?

OAuth tokens are stored in a Cloudflare KV namespace (OAUTH_KV) that you must create before deployment.

What transport protocol does the server use?

The server uses Server-Sent Events (SSE) — connect clients to the /sse endpoint.

Can I use this without a local proxy?

No. To connect Claude Desktop, you must run a local proxy using npx mcp-remote <server-url>/sse as shown in the example configuration.

Comments

More Cloud & Infrastructure MCP servers