Skip to main content
Glama

MCPサーバー (createMcpHandler)

Cloudflare Workers上でステートレスなMCPサーバーを実行する最も簡単な方法です。Agents SDKのcreateMcpHandlerを使用して、すべてのMCPプロトコルの詳細を1行で処理します。

デモの内容

  • createMcpHandlerMcpServerファクトリをWorker互換のfetchハンドラに変換するAgents SDKのヘルパー

  • 最小限のセットアップ — ファクトリ内でツールを定義し、そのファクトリをcreateMcpHandlerに渡すだけ

  • ステートレス — Durable Objectsなし、永続状態なし、各リクエストは独立

Related MCP server: createMcpHandler MCP Server

実行方法

pnpm install
pnpm start

ブラウザを開いて組み込みのツールテスターを確認するか、MCP Inspectorhttp://localhost:5173/mcp で接続してください。

仕組み

import { McpServer } from "@modelcontextprotocol/server";
import { createMcpHandler } from "agents/mcp/server";
import { z } from "zod";

function createServer() {
  const server = new McpServer({ name: "Hello MCP Server", version: "1.0.0" });
  server.registerTool(
    "hello",
    {
      description: "Returns a greeting",
      inputSchema: { name: z.string().optional() }
    },
    async ({ name }) => ({
      content: [{ type: "text", text: `Hello, ${name ?? "World"}!` }]
    })
  );
  return server;
}

export default {
  fetch(request, env, ctx) {
    return createMcpHandler(createServer)(request, env, ctx);
  }
} satisfies ExportedHandler;

関連する例

  • mcpMcpAgentとDurable Objectsを使用したステートフルなMCPサーバー

  • mcp-worker-authenticated — OAuth認証の追加

  • mcp-client — クライアントとしてMCPサーバーに接続

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • Cloudflare Workers MCP server: crypto-signal

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/Indxxr/mcp-worker'

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