MCP.so
ログイン

Building a Remote MCP Server on Cloudflare (Without Auth)

@mohdsuhail007

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

概要はまだありません

基本情報

カテゴリ

開発者ツール

ランタイム

node

トランスポート

stdio

公開者

mohdsuhail007

設定

標準の設定はありません

このサーバーの README には解析可能な MCP 設定ブロックが含まれていません。インストール手順はリポジトリをご確認ください。

リポジトリ

ツール

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

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

概要

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

This server lets you deploy a remote Model Context Protocol (MCP) server on Cloudflare Workers without requiring authentication. It is designed for developers who want to expose MCP tools over SSE (Server-Sent Events) to remote clients such as Cloudflare’s AI Playground or Claude Desktop.

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

Deploy by clicking the Deploy to Workers button or by running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal. After deployment, connect clients by pointing them to your server’s SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse). To add custom tools, edit the init() method in src/index.ts using this.server.tool(...).

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

  • Deploy a remote MCP server without authentication.
  • Hosted on Cloudflare Workers for global, low-latency access.
  • Includes a one-click Deploy to Workers button.
  • Supports custom tool definitions via the init() method.
  • Compatible with Cloudflare AI Playground and Claude Desktop.
  • Uses SSE transport for real-time communication.

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

  • Connect custom MCP tools to Cloudflare’s AI Playground from any location.
  • Use MCP tools inside Claude Desktop via a remote proxy.
  • Prototype and test MCP servers without setting up authentication.
  • Quickly share MCP tool access with teammates or public users.

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

How do I deploy the MCP server?

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

How do I connect it to Cloudflare AI Playground?

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

How do I connect Claude Desktop to this server?

Install the mcp-remote proxy (npx mcp-remote) and add a configuration entry in Claude Desktop’s settings (Developer > Edit Config) with the remote SSE URL.

How do I add custom tools?

Define each tool inside the init() method of src/index.ts using this.server.tool(...). Refer to Cloudflare’s MCP tools documentation for the full API.

Does this server require authentication?

No, this example is deliberately built without authentication. The server is public and accessible to anyone with the SSE URL.

コメント

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