drio
Open app

Remote MCP Server on Cloudflare

Source

Catalog onlyCatalog onlySTDIO

Overview

Remote MCP Server is a cloud-based server that allows users to run and connect to a Model Context Protocol (MCP) server on Cloudflare Workers, complete with OAuth login functionality.

To use the Remote MCP Server, clone the repository, install dependencies, and run the server locally. You can then connect to it using the MCP Inspector or Claude Desktop by configuring the appropriate settings.

  • Easy setup on Cloudflare Workers - OAuth login integration - Local development and testing capabilities - Connection support for MCP Inspector and Claude Desktop
  1. Running a remote MCP server for various applications.
  2. Connecting AI tools like Claude to perform tasks using the MCP protocol.
  3. Debugging and testing MCP APIs locally before deployment.

Add to your AI client

Use these steps to connect Remote MCP Server on Cloudflare in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "remote-mcp-server-irvinebroque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "remote-mcp-server-irvinebroque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "remote-mcp-server-irvinebroque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "remote-mcp-server-irvinebroque": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "remote-mcp-server-irvinebroque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "remote-mcp-server-irvinebroque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-remote-mcp-server-irvinebroque"
      ]
    }
  }
}

FAQ

Can I run this server without Cloudflare?

No, this server is designed to run on Cloudflare Workers.

Is there a way to test the server locally?

Yes, you can run the server locally using the provided commands and connect via the MCP Inspector.

What is the purpose of the MCP Inspector?

The MCP Inspector is a tool to explore and interact with your MCP API.

Remote MCP Server on Cloudflare — MCP Registry