Skip to main content
Glama
semisauvage-spec

remote-mcp-server-authless

Cloudflare でリモートMCPサーバーを構築する(認証なし)

この例では、認証なしのステートレスなリモートMCPサーバーを Cloudflare Workers にデプロイできます。MCP 2026-07-28 仕様を実装しつつ、通常のツール呼び出しに対してレガシークライアントとの互換性も維持しています。

始める:

Deploy to Workers

これで、MCPサーバーが remote-mcp-server-authless.<your-account>.workers.dev/mcp のようなURLにデプロイされます。

または、以下のコマンドラインを使って、リモートMCPサーバーをローカルマシン上に作成することもできます。

npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless

Related MCP server: remote-mcp-server-authless

MCPサーバーのカスタマイズ

MCPサーバーに独自のツールを追加するには、src/index.tscreateServer() 関数内で作成される McpServer に、server.registerTool(...) を使って各ツールを登録します。

Cloudflare AI Playground に接続する

リモートMCPクライアントである Cloudflare AI Playground から、お使いのMCPサーバーに接続できます:

  1. https://playground.ai.cloudflare.com/ にアクセスします。

  2. デプロイしたMCPサーバーのURL(remote-mcp-server-authless.<your-account>.workers.dev/mcp)を入力します。

  3. Playground から MCPツールを直接利用できます。

Claude Desktop を MCPサーバーに接続する

ローカルMCPクライアントからも、mcp-remote プロキシ を使ってリモートMCPサーバーに接続できます。

Claude Desktop から MCPサーバーに接続するには、Anthropicのクイックスタート に従い、Claude Desktop で 設定 > 開発者 > 設定を編集 に進んでください。

次の設定に更新してください:

{
	"mcpServers": {
		"calculator": {
			"command": "npx",
			"args": [
				"mcp-remote",
				"http://localhost:8787/mcp" // or remote-mcp-server-authless.your-account.workers.dev/mcp
			]
		}
	}
}

Claude を再起動すると、ツールが利用できるようになっているはずです。

F
license - not found
Not graded
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/semisauvage-spec/remote-mcp-server-authless'

If you have feedback or need assistance with the MCP directory API, please join our Discord server