mcp-use-hang-repro
Reproduces a race condition in mcp-use dev where tool results are dropped when the handler completes after the widget iframe loads.
README
Repro: widget tool result is dropped when the handler loses a race with the iframe load
In mcp-use dev, a tools/call that renders a widget can hang in the inspector: the server
finishes the call, but the result never reaches the client, which spins until its request
timeout (-32001). Whether it hangs depends on how long the tool handler takes — it's a
probabilistic race, not a fixed timeout.
Measured on the stock scaffold by sweeping the handler delay (DELAY_MS):
DELAY_MS |
worked |
|---|---|
| 0 | always |
| 100 | always |
| 150 | ~6 / 8 |
| 200 | ~50% |
| 250 | ~2 / 6 |
| 300 | never |
| 1000 | never |
| 2000 | never |
The probability of hanging climbs smoothly from ~150ms to ~300ms — a transition band, not a cliff. Reading: the tool result is racing the widget iframe finishing its load/connect (itself a variable ~150–300ms). If the handler returns before the iframe is done, the result is delivered; if it returns after, the result is dropped.
This is why it looks intermittent in a real server: a handler that hits an API/DB has jittery latency that lands in the transition band, so it hangs only some fraction of the time.
- Only in
mcp-use dev. A production build / deployed connector does not hang. - This project is the unmodified
create-mcp-use-app --template mcp-appsscaffold; the only change is making the stocksearch-tools2s delay configurable viaDELAY_MS.
Environment
- mcp-use: 1.33.0 (also seen on 1.30.0). macOS, Chrome.
Getting Started
npm install
npm run dev
Steps
DELAY_MS=2000 npm run dev # http://localhost:3000, opens the inspector
- Open the inspector, call
search-tools(args can be empty{}) → spins forever, eventually-32001. (At 2000ms it hangs every time.) - Restart with
DELAY_MS=0 npm run dev, call again → delivers instantly, every time. - To see the race, sweep
DELAY_MS=150 / 200 / 250(restart each time) and call the tool several times — it hangs a growing fraction of the time as the delay rises.
On hanging runs the widget iframe renders its skeleton (it received the tool input) but never the output (props).
Negative controls — Node clients do NOT reproduce it (so it's browser-specific)
These are MCP clients, so the dev server must already be running in another terminal.
DELAY_MS is a server setting (it controls the handler) — set it on npm run dev, not
on the script. Two terminals:
# terminal 1 — start the server at the hang-inducing delay, leave it running
DELAY_MS=2000 npm run dev
# terminal 2 — run a client against it
node repro.mjs # SDK client: pre-read widget, then tools/call + resources/read CONCURRENTLY
node repro-flood.mjs # SDK client: tools/call + a burst of widget asset fetches, concurrently
(If you see ECONNREFUSED ::1:3000, the dev server isn't running — start terminal 1 first.)
Both deliver the tool result fine even at DELAY_MS=2000 (the browser hangs every time at
that delay). A headless mcp-use client screenshot --tool search-tools also works. These
never load the widget iframe in a browser, so there's nothing for the result to race —
consistent with the race reading above.
Why (unconfirmed)
Browser-only + dev-only, probabilistic in a ~150–300ms band → looks like the result racing
something that completes when the widget iframe loads/connects, rather than a fixed timer or
plain connection contention. In mcp-use dev the iframe's assets are served from the same
origin (localhost:3000) by Vite; a deployed build serves prebuilt assets from a separate
CDN origin and doesn't hang. Exact mechanism unconfirmed.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.