mcp-request-idempotency-reference
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-request-idempotency-referencerun the demo with retry dedup and conflict scenarios"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Request Idempotency — Reference Implementation
Minimal, runnable demonstration of the protocol-level mechanism proposed in
SEP-3182: Request Idempotency:
an idempotencyKey field on tools/call params (a sibling of arguments,
not nested inside it), with deduplication performed in server-side dispatch
before any tool handler runs, and explicit conflict semantics for a reused
key presented with different arguments.
This is a demonstration server, not a production implementation — the dedup store is an in-memory dict with no eviction. It exists to make the before/after failure mode concrete for reviewers, per the SEP process's prototype requirement ("a standalone proof-of-concept demonstrating the key mechanics").
Setup
pip install -r requirements.txtNote on the version pin: this demo uses FastMCP from
mcp.server.fastmcp, and relies on CallToolRequestParams allowing
extra fields (model_config = {"extra": "allow"}) to carry
idempotencyKey as a sibling of arguments. As of the mcp SDK's
2.0.0 release, both of these changed: FastMCP was renamed and moved
to MCPServer in mcp.server.mcpserver, and CallToolRequestParams
no longer allows extra fields — an idempotencyKey sent under 2.0.0
is silently dropped at construction, with no error, rather than causing
an import failure. Installing a plain pip install mcp today will pull
2.0.0 and this demo will appear to run while never actually
deduplicating anything. The pin above (mcp>=1.9.0,<2.0.0) avoids both
problems. Porting this demo to 2.0.0 would require idempotencyKey to
be added as a declared field (or an equivalent extension mechanism, if
MCPServer provides one) rather than relying on extra-field passthrough
— that port is out of scope for this prototype.
Related MCP server: MCP-TS-DEMO
Run
python3 client_demo.pyThis spawns server.py as a stdio subprocess and runs three scenarios:
No idempotency support — a lost-response retry double-charges.
With
idempotencyKey— the same retry is deduplicated; the cached result is returned, no re-execution.Conflict semantics — the same key reused with different arguments is rejected outright, not replayed or silently executed.
Verified working end-to-end against mcp==1.9.4 on 2026-08-01.
Note on the 2026-07-28 stateless spec: this demo's dedup logic
(_dedup_store in server.py) is keyed entirely by the client-supplied
idempotencyKey and never depends on protocol-level session state, so
nothing here needed to change when MCP went stateless. The one thing
worth calling out for anyone adapting this into a real server: in a
horizontally-scaled, stateless deployment, that store needs to be
shared across instances (a cache or database), not a per-process dict
like this demo uses — see the SEP's "Relationship to the 2026-07-28
stateless core and MRTR" section for why.
Files
server.py— the guarded (charge_guarded) and unguarded (charge_unguarded) tool implementations, plus areset_ledgertest helper.client_demo.py— drives all three scenarios againstserver.py.
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 gradedqualityDmaintenanceA multi-server implementation that uses OpenAI's LLM to orchestrate multiple tool servers providing web search, weather lookup, random facts, and PostgreSQL database querying capabilities.
- AlicenseDqualityDmaintenanceA TypeScript MCP server demo supporting local Stdio and remote Streamable HTTP, demonstrating tool invocation for AI agents.2MIT
- FlicenseNot gradedqualityCmaintenanceDemonstrates MCP 2026-07-28 behavior for long-running tool calls, task lifecycle (get, update, cancel), and elicitation clarification during async tasks.
- AlicenseNot gradedqualityBmaintenanceDemo MCP server for ACEL, a runtime verification middleware that blocks a rule-violating tool call before it executes. 5 tools (authenticate, read/validate/delete records, send payment) showing ACEL enforcing call ordering and state preconditions live via the official MCP SDK's middleware hook.MIT
Related MCP Connectors
Prevent duplicate AI-agent side effects with idempotency, verification, and durable receipts.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Hash-chained HMAC-signed audit log MCP for A2A (agent-to-agent) calls. Every tool-call, agent-ha...
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/abluva/mcp-request-idempotency-reference'
If you have feedback or need assistance with the MCP directory API, please join our Discord server