eve-mcp-handshake-repro
eve MCP-Verbindung: sechs HTTP-Anfragen pro Tool-Aufruf
Eine minimale Reproduktion für vercel/eve: Ein Durchlauf, der einen MCP-Tool-Aufruf ausführt, sendet elf HTTP-Anfragen an den MCP-Server, genau eine davon ist der Tool-Aufruf.
mcp-server.mjs ist Server und Messinstrument zugleich – es implementiert einen zustandslosen Streamable-HTTP-MCP-Server mit einem echo-Tool und gibt für jede empfangene Anfrage eine Zeile aus.
Ausführen
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 2Related MCP server: Copilot Studio MCP Server
Was Terminal 1 ausgibt
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 ┘Was erwartet wird
Ein Tool-Aufruf sollte aus genau einem tools/call bestehen, plus einen über die Sitzung amortisierten Handshake – nicht aus einem frischen initialize + notifications/initialized + tools/list pro Workflow-Schritt und auch nicht aus einer GET-Vorabfrage vor jedem dieser Schritte, wenn der Server bereits auf POST geantwortet hat.
Aufgezeichnet mit eve 0.44.3, Node 24, Linux. Dasselbe Muster aus elf Anfragen wurde erstmals mit Version 0.34.0 gegen einen Produktions-MCP-Server beobachtet, bei dem jede Anfrage einen Serverless-Roundtrip statt eines Loopback-Roundtrips verursacht.
This server cannot be installed
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
- FlicenseNot gradedqualityCmaintenanceA stateless Model Context Protocol server that implements a simple echo functionality with resource, tool, and prompt components, enabling LLMs to echo back messages through standardized MCP interactions.1
- FlicenseNot gradedqualityDmaintenanceExample MCP server for Microsoft Copilot Studio, providing echo (repeat input 3 times) and multi (square a number) tools via Streamable HTTP.
- AlicenseNot gradedqualityBmaintenanceMock HTTP server implementing MCP (Model Context Protocol) with streamable HTTP transport, health endpoint, and example tools like echo and time.381MIT
- FlicenseNot gradedqualityCmaintenanceMCP server providing time retrieval and echo tools, running as an independent network process over Streamable HTTP.
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).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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