Commerce Incident Investigator MCP Server
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., "@Commerce Incident Investigator MCP ServerInvestigate the missing order for payment ref PAY-123"
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.
Commerce Incident Investigator
MCP server for the DiligenceAI take-home assignment. It handles one specific commerce incident: a customer's payment was captured, but no order was ever created for it.
The MCP server is the actual product here, not a wrapper around one. An AI agent calls it to investigate the incident, pull together evidence, and raise a human-review escalation. It doesn't take any corrective action itself — no recreating orders, no touching payments. That part stays with a person on the ops team.
Why this incident, specifically
Payment-order mismatches are one of the more common things an ops team gets pulled into: a webhook fails, a race condition hits between capture and order creation, a retry gets mishandled somewhere upstream. It's also narrow enough to build and verify properly in the time given, rather than sprawling into a general-purpose "investigate anything" tool that ends up shallow everywhere.
Related MCP server: commerce-ops-mcp
How it works
Customer says "I paid but never got a confirmation."
An agent calls
investigate_payment_incidentwith thecheckout_referencefrom their payment.The server looks up the payment and the order — read-only. Is the payment actually captured? Has enough time passed that this isn't just normal async delay? Does a matching order exist at all?
If all three point to a real incident, it writes an
incident_escalationsrow: evidence, a confidence level, a recommended next step. That's the review item a human picks up.list_open_escalationsgives the ops team a queue.get_escalation_statuschecks in on one specific case.
The schema decisions that mattered
Full schema is in migrations/001_init.sql, but two things are worth
calling out because they went through a few rounds of revision before
landing:
The correlation key. Early on I was matching payments to orders through
customer identity, which doesn't actually work — a customer can have
several payments and orders, so there's no way to say this payment should
map to that order. Fixed it with a checkout_reference: generated once
at checkout, stamped on both the payment and the order it produces. Now the
investigation has something deterministic to match against instead of
guessing.
Duplicate escalations under concurrent investigations. If the same
incident gets investigated twice — a retry job overlapping with a manual
recheck, say — naive "check if it exists, then insert" logic can still
race and create two escalations for one incident. I added a partial unique
index on incident_escalations (checkout_reference) WHERE status IN ('open', 'acknowledged'), paired with INSERT ... ON CONFLICT ... DO UPDATE. That pushes the guarantee down into Postgres itself instead of
trusting application code to get the timing right. Verified this isn't
just theoretical — there's a test that fires 10 concurrent investigations
at the same incident and checks exactly one row exists afterward.
The 5-minute buffer between "payment captured" and "treat missing order as
an incident" is a documented assumption for this demo, not a real business
policy — it exists so normal async order-creation delay doesn't get
flagged as a false incident. It's the BUFFER_MINUTES constant in
src/investigate.ts if it needs tuning.
What I left out, and why
Inventory and fulfillment data. I went back and forth on this with the client during scoping. For this specific trigger (payment captured, order missing) there wasn't a concrete piece of inventory evidence that would change the classification without modeling a separate reservation step this workflow doesn't have. Rather than bolt it on for the sake of looking thorough, I cut it.
Auth, a frontend, a real commerce backend. Explicitly out of scope per the assignment.
Any automated fix. The server investigates and escalates. It never recreates an order or touches a payment. That's a deliberate line, not a missing feature.
Project layout
migrations/001_init.sql schema — tables + the partial unique index
src/db.ts Postgres pool
src/migrate.ts migration runner
src/seed.ts synthetic data covering 4 scenarios
src/investigate.ts the actual investigation logic, kept separate
from the MCP/transport layer so it's testable
on its own
src/server.ts MCP server, 3 tools, Streamable HTTP
src/smoke-test.ts reproducible hosted-protocol check — see below
tests/investigate.test.ts integration tests against a real Postgres DBRunning it locally
npm install
cp .env.example .env # add your DATABASE_URL
npm run migrate
npm run seed
npm run dev # server on :3000GET /healthz for a basic check. The actual MCP endpoint is POST /mcp
(Streamable HTTP — it's session-based, so a client needs to call
initialize before it can call any tool).
Tests
npm testNine tests, all against a real database rather than mocks: the four seed scenarios, re-investigating an incident updates the existing escalation instead of duplicating it, an escalation auto-resolves once a delayed order shows up, and the concurrency test mentioned above.
One thing I caught while running these against Neon: the "within buffer
window" scenario is inherently time-relative (it depends on how long ago
the payment was seeded), so if you run seed and then run the tests
several minutes later, that scenario can quietly become stale and the test
fails — correctly, because the underlying behavior is actually right, the
test data just aged out of the window it was meant to represent. Fixed by
having the test suite seed that specific case fresh, immediately before
asserting on it, instead of depending on npm run seed having been run
recently.
Hosted-protocol smoke check
The test suite above runs the investigation logic directly against Postgres.
It doesn't prove the deployed MCP endpoint itself actually speaks the
protocol correctly over the network. This script does — it initializes a
real MCP session against a live URL, lists the tools, calls
investigate_payment_incident, and writes the raw request/response pairs
to smoke-test-output.json so the result is inspectable and reproducible,
not just something I ran once and pasted into a chat.
MCP_URL="https://diligence-mcp.onrender.com/mcp" npm run smoke:hostedDefaults to http://localhost:3000/mcp if MCP_URL isn't set. Exits
non-zero if the deployed server doesn't respond as expected, so it can
also be used as a basic post-deploy health check.
Deploying (Render + Neon)
Spin up a free Neon Postgres project, grab the connection string.
Run migrate + seed against it once, locally:
DATABASE_URL="<neon-connection-string>" npm run migrate DATABASE_URL="<neon-connection-string>" npm run seedNew Render Web Service, pointed at this repo:
Build:
npm install && npm run buildStart:
npm startEnv var:
DATABASE_URL(same Neon string — don't setPORT, Render assigns its own and the server already readsprocess.env.PORT)
MCP endpoint ends up at
https://<your-app>.onrender.com/mcp.
Seed data
checkout_reference | What it represents |
| Confirmed incident — captured, no order, buffer elapsed |
| Healthy — order exists |
| Too soon to tell — still inside the buffer window |
| Not eligible — payment was never captured |
What's not done / what I'd do next
Session state in
server.tsis in-memory, which is fine for one instance but wouldn't survive a multi-instance deployment — would need a shared store (Redis, or similar) for that.Only one incident type exists right now.
incident_typeis already a column onincident_escalationsspecifically so more types can be added later without a schema migration.No auth on the MCP endpoint — intentional, per the assignment's scope guidance, but obviously not how this would ship in a real deployment.
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
- Flicense-qualityBmaintenanceHelps a commerce operations analyst investigate stuck synthetic orders, diagnose blockers from stored facts, and create auditable human-review escalations without changing fulfillment state.Last updated
- Flicense-qualityBmaintenanceEnables AI agents to investigate why paid orders have not reached shipment creation and create persistent human-review escalations.Last updated2
- Flicense-qualityBmaintenanceHelps commerce operations investigate delayed fulfillment stages and create safe, deduplicated human-review escalations.Last updated
- Flicense-qualityCmaintenanceEnables AI assistants to investigate and safely resolve commerce order exceptions, such as expired inventory reservations, by providing a workflow across synthetic order, payment, inventory, and fulfillment systems.Last updated
Related MCP Connectors
AI agent run monitoring with incident replay and SLA receipts.
See, price, and control every tool call your AI agents make: policy checks, cost, and audit tools.
Agent Commerce Protocol MCP — bridges Stripe ACP + Google AP2 + Coinbase x402 for agent payments
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/Kalpesh1Sharma/Diligence_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server