Building a Remote MCP Server on Cloudflare (Without Auth)
@ashaney
Building a Remote MCP Server on Cloudflare (Without Auth) について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを 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)?
This example deploys a remote MCP server that requires no authentication on Cloudflare Workers. It is intended for developers who want to quickly host and connect MCP tools from Cloudflare's edge network.
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. Customize tools inside the init() method of src/index.ts using this.server.tool(...). Connect from Cloudflare AI Playground by entering the deployed SSE URL, or from Claude Desktop by configuring the mcp-remote proxy in your MCP settings.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy to Cloudflare Workers with one click
- No authentication required on the server
- Customizable by adding tools in
src/index.ts - Supports SSE transport
- Works with remote MCP clients via mcp-remote proxy
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Quickly deploy a remote MCP server on Cloudflare's edge
- Connect MCP tools to Cloudflare AI Playground for testing
- Integrate a remote MCP server with Claude Desktop locally
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What does this MCP server do?
It hosts a remote MCP server on Cloudflare Workers without authentication, allowing you to define and expose custom tools over SSE.
How do I deploy this MCP server?
Either use the "Deploy to Workers" button on the README, or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.
How can I customize the MCP tools?
Add each tool inside the init() method of src/index.ts using this.server.tool(...).
How do I connect this MCP server 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 you can use the tools directly.
How do I connect this MCP server to Claude Desktop?
Install the mcp-remote proxy, then add a configuration entry in Claude Desktop's MCP settings pointing to your server's SSE URL (local or remote). Restart Claude to see the tools.
「開発者ツール」の他のコンテンツ
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
test
prysmaticlabsGo implementation of Ethereum proof of stake
nuxt-mcp / vite-plugin-mcp
antfuMCP server helping models to understand your Vite/Nuxt app better.
MCP-Bridge
SecretiveShellA middleware to provide an openAI compatible endpoint that can call MCP tools
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
コメント