OrderOps MCP
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., "@OrderOps MCPInvestigate order ORD-1001"
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.
OrderOps MCP
OrderOps is a small, AI-native operations service for investigating and safely resolving commerce order exceptions. It gives an MCP-capable assistant a coherent workflow across synthetic order, payment, inventory, and fulfillment systems without requiring an operator to ask an engineer for every trace.
Source repository: https://github.com/Flamki/order-ops-mcp
The deliberately narrow automated path is an expired inventory reservation: when payment is captured, stock is available, and fulfillment is blocked on the missing reservation, an operator can review a state-bound proposal and approve a re-reservation. Payment changes, customer data, refunds, cancellations, and customer contact are never automated.
Hosted endpoint
MCP:
https://order-ops-mcp.shared-trapezoid.workers.dev/mcpHealth:
https://order-ops-mcp.shared-trapezoid.workers.dev/health
The Cloudflare deployment has been claimed by its owner and the deployed Streamable HTTP endpoint has been verified with the included MCP client. Proposal, execution, and idempotency state is coordinated in one SQLite-backed Durable Object.
Related MCP server: Mercora
Product workflow
orders_list_exceptionsdiscovers the three synthetic exception cases.orders_investigatejoins evidence from the OMS, payment processor, inventory service, and fulfillment provider.orders_propose_resolutionrechecks policy and creates a 10-minute proposal bound to the current order-state fingerprint.The assistant presents the evidence, exact changes, and approval phrase to a human and stops.
orders_execute_resolutionvalidates exact approval, expiry, unchanged state, policy preconditions, and an idempotency key before mutating the synthetic order.The operator receives a structured before/after receipt. An exact retry returns the original receipt and does not mutate twice.
The MCP is the product boundary, not a wrapper around a separate UI. Tool descriptions tell the model when to call each capability, Zod schemas advertise and validate inputs and structured outputs, annotations identify read and write behavior, and the server exposes the governing runbook as an MCP resource. A prompt provides a client-independent triage workflow.
MCP surface
Capability | Role | Side effect |
| Discover synthetic cases | None |
| Explain cross-system root cause and evidence | None |
| Create a short-lived, state-bound proposal | No order mutation |
| Apply the single permitted resolution and return a receipt | Mutates synthetic state |
| Let another evaluator replay the synthetic workflow | Clears all demo state |
| Machine-readable automation policy | None |
| Prompt that enforces investigate → propose → wait | None |
Demo cases
Order | Diagnosis | Automated? |
| Captured payment, expired reservation, fulfillment blocked, stock available | Yes, with explicit approval |
| Payment failed | No |
| Invalid shipping address | No |
| Healthy control order | No action needed |
All records are synthetic and contain no customer PII or production credentials.
Test with an MCP client
Use the MCP Inspector and connect to http://localhost:8787/mcp:
npx @modelcontextprotocol/inspector@latestOr use the included real Streamable HTTP client:
npm install
npm run devIn a second terminal:
npm run demoThe default demo stops before mutation. Only after reviewing the proposal:
npm run demo -- --execute-approvedIf another evaluator has already resolved the shared synthetic order:
npm run demo -- --reset-first --execute-approvedTo target a deployed server:
$env:MCP_URL = "https://your-worker.workers.dev/mcp"
npm run demoVerify and deploy
Requirements: Node.js 22+ and npm.
npm install
npm run verify
npx wrangler deploy --dry-run
npm run deploynpm run verify performs strict TypeScript checking and 14 focused tests. The
tests cover diagnosis, out-of-policy cases, exact approval, proposal expiry,
stale state, mutation receipts, idempotent replay, and idempotency conflicts.
npm audit currently reports zero known vulnerabilities.
Cloudflare Workers is used because it directly supports remote Streamable HTTP
MCP via the TypeScript MCP SDK and provides a small deployment surface. The
server follows the current stateless handler pattern rather than the deprecated
sessionful McpAgent path.
Architecture and boundaries
MCP client
|
Streamable HTTP /mcp
|
tool schemas + policy gates
|
investigation / proposal / execution domain
|
synthetic OMS + payments + inventory + fulfillment adapterFor the bounded demo, a named Durable Object serializes operations and persists the synthetic adapter, proposals, receipts, and idempotency ledger in SQLite. A production version would replace the synthetic order adapter with internal OMS/WMS APIs, add OAuth and role scopes, retain immutable audit events, rate-limit writes, and define operational reset/recovery procedures. The domain rules and tests remain reusable.
Human approval is a semantic client boundary, not proof of human presence: an untrusted client can copy an approval phrase. Production execution therefore also needs authenticated operator identity and an approval UI or MCP elicitation flow.
See product decisions, AI worklog, demo script, and client communication drafts.
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-qualityDmaintenanceEnables AI assistants to interact with a commercial management system through controlled capabilities for querying orders, analyzing invoices, summarizing customer activity, and creating orders, with role-based access control and audit trails.Last updated
- Flicense-qualityBmaintenanceEnables AI agents to discover products, build carts, and complete purchases across multiple downstream commerce services through a secure, contract-driven API.Last updated
- Flicense-qualityBmaintenanceEnables AI agents to investigate and resolve operational exceptions across orders, payments, inventory, and fulfillment through a multi-system truth and guarded actions.Last updated
- Flicense-qualityCmaintenanceEnables 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
Related MCP Connectors
AI agent run monitoring with incident replay and SLA receipts.
Runtime permission, approval, and audit layer for AI agent tool execution.
Commission infrastructure for AI commerce — program discovery, attribution, and settlement.
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/Flamki/order-ops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server