MCP.so
ログイン

Building a Remote MCP Server on Cloudflare (Without Auth)

@roerohan

Building a Remote MCP Server on Cloudflare (Without Auth) について

概要はまだありません

基本情報

カテゴリ

開発者ツール

ランタイム

node

トランスポート

stdio

公開者

roerohan

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Building a Remote MCP Server on Cloudflare (Without Auth)?

A template to deploy a remote Model Context Protocol (MCP) server on Cloudflare Workers without authentication. It enables building and exposing MCP tools via Cloudflare's edge network.

How to use Building a Remote MCP Server on Cloudflare (Without Auth)?

Deploy using the "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools in the init() method of src/index.ts by calling this.server.tool(...). Connect remote clients like Cloudflare AI Playground or Claude Desktop (via the mcp-remote proxy) to the SSE endpoint.

Key features of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Deploy without authentication on Cloudflare Workers.
  • One-click deployment or CLI setup.
  • Add custom MCP tools with TypeScript.
  • Connect to Cloudflare AI Playground remotely.
  • Connect to Claude Desktop via mcp-remote proxy.
  • SSE-based remote MCP server endpoint.

Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Deploy an MCP server accessible without authentication for rapid prototyping.
  • Use MCP tools directly from Cloudflare AI Playground.
  • Connect local MCP clients like Claude Desktop to remote tools via proxy.
  • Build and test custom MCP tools on Cloudflare's edge network.

FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)

How do I deploy the server?

Use the "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.

How do I add custom tools?

Define each tool inside the init() method of src/index.ts using this.server.tool(...).

How do I connect to Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/ and enter your deployed MCP server URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse).

How do I connect to Claude Desktop?

Use the mcp-remote proxy. Configure Claude Desktop's MCP settings with "command": "npx", "args": ["mcp-remote", "<your-sse-url>"].

コメント

「開発者ツール」の他のコンテンツ