Skip to main content
Glama
devasur

eve-mcp-handshake-repro

by devasur

eve MCP 接続: ツール呼び出しごとに6件のHTTPリクエスト

vercel/eve の最小再現です。1つのMCPツール呼び出しを行う1ターンで、MCPサーバーに 11件のHTTPリクエスト が送信され、そのうち1件がツール呼び出しです。

mcp-server.mjs はサーバーであり計測器でもあります — echo ツールを1つ持つステートレスな Streamable-HTTP MCP サーバーを実装し、受信したリクエストごとに1行出力します。

実行方法

npm install
echo 'AI_GATEWAY_API_KEY=<your key>' > .env.local   # or VERCEL_OIDC_TOKEN=…

node mcp-server.mjs                                 # terminal 1
npx eve invoke "Echo the word marigold."            # terminal 2

Related MCP server: Copilot Studio MCP Server

端末1の出力

  1  GET /mcp  → 405            ← transport probe
  2  POST /mcp  initialize      ┐ connection_search's client
  3  POST /mcp  notifications/initialized
  4  GET /mcp  → 405            │
  5  POST /mcp  tools/list      ┘
  6  GET /mcp  → 405            ┐ the tool call's client — a new one
  7  POST /mcp  initialize      │
  8  POST /mcp  notifications/initialized
  9  GET /mcp  → 405            │
 10  POST /mcp  tools/list      │
 11  POST /mcp  tools/call      ┘

期待される動作

1つのツール呼び出しには、tools/call を1回と、セッション全体にわたって償却されるハンドシェイクだけがかかるべきです。ワークフローの各ステップごとに新しい initialize + notifications/initialized + tools/list を実行したり、サーバーがすでに POST に応答しているのに毎回 GET プローブを送信したりするのは避けるべきです。

eve 0.44.3、Node 24、Linux で記録しました。同じ11リクエストの形状は、本番の MCP サーバーに対して0.34.0で最初に確認されました。そこでは各リクエストがループバックではなくサーバーレスのラウンドトリップでした。

F
license - not found
Not graded
quality - not tested
C
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

  • AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

  • Streamable HTTP MCP server for Google Calendar and Sheets with OAuth login.

  • Hosted Crawleo MCP (remote streamable HTTP endpoint).

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/devasur/eve-mcp-handshake-repro'

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