MCP.so
ログイン

Building a Remote MCP Server on Cloudflare (Without Auth)

@anniandnevi

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

概要はまだありません

基本情報

カテゴリ

開発者ツール

ランタイム

node

トランスポート

stdio

公開者

anniandnevi

設定

標準の設定はありません

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

リポジトリ

ツール

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

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

概要

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

A template for deploying a remote Model Context Protocol server on Cloudflare Workers without authentication, providing an SSE endpoint for MCP clients. It is intended for developers who want a quick, publicly accessible MCP server for prototyping or tools that don’t require auth.

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

Deploy using the “Deploy to Workers” button or via the CLI command npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools inside the init() method of src/index.ts by calling this.server.tool(...). Connect clients by pointing them to the deployed SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse).

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

  • Deployable with one click to Cloudflare Workers
  • No authentication required for access
  • Exposes tools via an SSE endpoint
  • Ready-to-use template with customization hooks
  • Supports connection from Cloudflare AI Playground and Claude Desktop

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

  • Quickly prototyping an MCP server without setting up auth
  • Exposing MCP tools to the Cloudflare AI Playground
  • Connecting a remote MCP server to Claude Desktop via the mcp-remote proxy

FAQ from Remote MCP Server on Cloudflare (Without Auth)

What is the deployed URL format?

After deployment the URL is remote-mcp-server-authless.<your-account>.workers.dev/sse.

How do I add my own tools?

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

How do I connect the server to Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL, and the tools become available in the playground.

How do I connect the server to Claude Desktop?

Use the mcp-remote proxy (npx mcp-remote <sse-url>) in your Claude Desktop configuration, then restart Claude.

Does the server require authentication?

No – this server explicitly does not require authentication. It is designed for authless access.

コメント

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