commerce-ops-mcp
This server provides read-only tools to investigate why an e-commerce order is delayed and what to do about it.
search_orders: Find candidate orders to investigate, optionally filtered by status (
pending,processing,completed,cancelled,failed) or customer ID.get_order_context: Gather all operational facts for a specific order (order details, customer, payment, items/products, inventory, fulfillment) as evidence.
diagnose_order_delay: Apply deterministic rules to identify the most likely cause of a delay (payment issue, inventory shortage, fulfillment delay/failure, cancellation, or no issue) with supporting evidence.
recommend_resolution: Combine diagnosis and context to return recommended next actions for an operations specialist.
All tools are read-only; no write or action tools are available. Data is synthetic and no authentication is required.
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-ops-mcpWhy is order ORD-12345 delayed and what should I do?"
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 Operations MCP
Status: domain/data foundation plus a working MCP server exposing four read-only investigation tools, served over both local stdio and remote Streamable HTTP (hosted on Render). No write/action tool yet — see "Current limitations".
Hosted MCP URL: https://e-commerce-mcp.onrender.com/mcp (Streamable
HTTP, stateless — see "Connecting to the hosted server" below)
Working name: commerce-ops-mcp (may change before final delivery).
An AI-native commerce operations investigator focused on delayed-order investigation, exposed through a remotely hosted MCP server.
Problem
An operations specialist needs to answer, for a given order: "why is this order delayed, and what should I do about it?" Answering that well often requires checking payment status, inventory availability, and fulfillment state — but the product is that one investigation workflow, not standalone tooling for payments, inventory, or fulfillment.
Confirmed scope (client-clarified): a single, focused end-to-end workflow — delayed-order investigation — is the right level of scope. Separate coverage of all four commerce domains (orders, payments, inventory, fulfillment) as independent workflows is explicitly out of scope. The project intentionally does not provide independent workflows for payments, inventory, fulfillment, or general order management; those systems are consulted only as supporting evidence when investigating a delayed order.
Related MCP server: commerce-operations-mcp
Current scope
This repository implements the backend foundation plus a working MCP server on top of it:
Domain types and status enums
A synthetic, internally consistent commerce dataset (static TypeScript modules)
A repository layer over that dataset
An
OrderContextServicethat composes operational facts (not diagnoses) for a given orderA
DelayDiagnosisServicethat applies deterministic rules to those facts to identify the likely delay causeA
ResolutionServicethat maps a diagnosis to recommended next actionsAn MCP server exposing
search_orders,get_order_context,diagnose_order_delay, andrecommend_resolutionas tools, over two transports sharing the same tool registration (src/mcp/create-server.ts):src/mcp/server.ts— stdio, for local MCP clients (Claude Desktop/Code, MCP Inspector)src/mcp/http.ts— Streamable HTTP (stateless), deployed remotely on Render for AI agents to connect to without any local setup
Tests covering all of the above
No write/action tool (create_resolution_ticket), LLM/agent integration,
database, or frontend exists yet. See CLAUDE.md for the explicit scope
boundary and docs/assumptions.md / docs/decisions.md for what's decided
vs. pending.
Architecture
Synthetic data (src/data/*.ts — static, typed TypeScript modules)
↓
Repositories (src/repositories/*.repository.ts)
↓
Domain services (order-context.service.ts, delay-diagnosis.service.ts,
resolution.service.ts)
↓
src/mcp/create-server.ts — search_orders, get_order_context,
diagnose_order_delay, recommend_resolution
↓ ↓
src/mcp/server.ts (stdio) src/mcp/http.ts (Streamable HTTP → Render)Repositories hide the underlying data representation; services and the MCP
tools depend only on repository method signatures, not on how the data is
stored. See docs/decisions.md for why static TypeScript modules were
chosen over PostgreSQL, why the MCP tool set stops at four read-only tools
for now, and why the remote transport runs in stateless mode.
Connecting to the hosted server
No local setup is required to try the deployed workflow — point any MCP client that supports Streamable HTTP at:
https://e-commerce-mcp.onrender.com/mcpFor example, with the MCP Inspector:
npx @modelcontextprotocol/inspector
# then connect with transport "Streamable HTTP" and the URL aboveThe server is stateless and unauthenticated (read-only synthetic data only —
see docs/decisions.md for that tradeoff, stated explicitly rather than
left implicit). The /mcp endpoint is rate-limited to 60 requests per IP
per minute (in-memory, per-instance — see docs/decisions.md) as a basic
abuse guard given the lack of authentication.
Running locally
npm install
npm run typecheck
npm test
# stdio transport (for Claude Desktop/Code, MCP Inspector over stdio)
npm run build
npm start
# Streamable HTTP transport (what's deployed to Render)
npm run build
npm run start:http # listens on $PORT, defaults to 3000Point any MCP client (e.g. npx @modelcontextprotocol/inspector node dist/server.js, or Claude Desktop/Code's MCP config) at npm start (from
this directory) to connect over stdio.
Testing
Tests use Vitest and live in tests/, mirroring
src/:
tests/repositories/— finder methods, including missing-record casestests/services/—OrderContextService(context composition, including theORD-1003inventory-shortage case),DelayDiagnosisService(all seven scenario orders map to their expected category), andResolutionServicetests/data/— cross-record invariant checks (foreign keys, order totals, one-record-per-order cardinality, required scenario orders) run against the real dataset and against deliberately broken copies of it — checks TypeScript's structural typing can't express on its own
Synthetic data
src/data/ contains 18 products, 15 customers, 50 orders, and their
corresponding payments/inventory/fulfillment records — all synthetic,
INR-priced, .test-domain emails, MockPay as the fake payment provider.
Each entity is a static, typed TypeScript module (e.g. src/data/orders.ts)
rather than a JSON file; the dataset was generated once and is now
finalized and hand-editable in place — see docs/decisions.md.
Seven orders (ORD-1001–ORD-1007) are deterministic, hand-crafted
scenarios representing known operational situations (payment failure,
inventory shortage, fulfillment delay, etc.) — see
docs/test-scenarios.md for the full table.
Current limitations
No write/action tool (
create_resolution_ticket) — read-only investigation, diagnosis, and recommendation only.No persistence beyond static TypeScript modules; no database.
No authentication/authorization on the hosted HTTP endpoint — deliberate and disclosed, not an oversight; see
docs/decisions.md. Acceptable here because the tool set is read-only and the data is synthetic; would need revisiting before any real data touched this server. Mitigated in part by a per-IP rate limit (60 req/min, in-memory) on/mcp, but that limits abuse per-instance only, not a substitute for real auth.No real external integrations of any kind.
Future stages
Not yet built, and out of scope for this submission: one controlled,
confirmation-gated write action (create_resolution_ticket), and
authentication on the hosted endpoint if this ever handled real data. See
CLAUDE.md and docs/decisions.md / docs/assumptions.md for what's
confirmed vs. still open.
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-qualityBmaintenanceEnables AI agents to investigate and resolve e-commerce order exceptions like damages, lost shipments, refunds, and replacements through a unified interface with built-in guardrails.Last updated
- 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
Related MCP Connectors
Routes natural-language shopping queries to merchant storefronts, returns normalized results.
Policy review and purchase discovery for AI-agent commerce actions.
Manage your Savanto store from your AI: catalog, content, prompts, and analytics, by chat.
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/ameghcoder/e-commerce-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server