Skip to main content
The Inventory MCP is droplinked’s agentic surface over InventoryOS. Any MCP-capable agent (Claude Desktop, Claude Code, Cursor, Continue, the Vercel AI SDK, …) can discover merchant catalogs, place orders, issue refunds, and read on-chain attestation state — all against the public discovery doc, no merchant credentials required for read-side tools. Discovery URL (live):
curl -s https://apiv3.droplinked.com/.well-known/mcp.json | jq .tools[].name

Tools

The 11 LIVE tools as of 2026-06-13, returned by the canonical MCP discovery doc:
ToolPurpose
findInventoryDiscover SKUs across a merchant’s shops, with stock + warehouse signals
getStockoutAlertsSurface critical stockout signals (privacy-aware per merchant attestation policy)
getProductDetailFull SKU detail including variants, pricing, fulfillment metadata
getShopInfoShop-level metadata — owner, plan tier, PSP authorizations
searchProductsFree-text search across the public catalog
listMerchantsDiscover merchants on the platform (paginated)
placeOrderAgenticSingle-call order placement that also returns the payment-intent for downstream PSP redirect
getOrderReceiptCustomer/agent-facing receipt — items, totals, payment method (PSP-invisible)
getOrderStatusLight-weight fulfillment polling — state machine projection only
refundOrderAgent-initiated refund routed through the existing PSP refund chokepoint
queryEventLogSUPER_ADMIN observability into the Pillar 5 EventBus (admin-only via shared-secret bridge)
Each tool validates input with a JSON Schema returned in the discovery doc and calls https://apiv3.droplinked.com as the canonical base.

Discovery

curl -s https://apiv3.droplinked.com/.well-known/mcp.json
Returns the full tool registry — names, descriptions, input schemas, output shapes. Any compliant MCP client will use this to auto-discover the surface.

Privacy + cost-efficiency

Inventory + attestation tools respect each merchant’s MerchantAttestationPolicy:
  • Default: opt-in privatefindInventory returns a redacted attestation status for merchants who have not opted in to on-chain publishing
  • lenders_only scope — visible to allowlisted lenders via authenticated calls
  • public scope — visible to anyone
On-chain attestations are batched daily by default to keep gas cost predictable. See EAS Schema v2 for the 4-axis trust fabric (brand / credit / inventory / cross-attestation) that the Inventory MCP reads from.

Where to go next