Skip to main content
This guide is for agent developers — anyone building on top of MCP-capable clients (Claude, ChatGPT, Cursor, Continue, the Vercel AI SDK) who wants to turn the Droplinked catalog into a tool surface their agent can call. For the install side (point Claude Desktop / Claude Code at the local server), see MCP Server. This page covers the HTTP transport at mcp.droplinked.com.
The mcp.droplinked.com host, X-MCP-API-Key auth, and REST-style /mcp/tools/{name} routes on this page describe the hosted gateway. The Droplinked backend itself serves MCP directly at apiv3.droplinked.com over JSON-RPC routes (/mcp/v1/tools/{list,call}), unauthenticated in the current phase — see MCP Server and Inventory MCP for the live, code-grounded surface. If you’re integrating against the backend today, use those.

Endpoints

Manifests and the well-known discovery doc are unauthenticated — any agent can probe them at runtime to learn the surface.

Authentication

For any tool invocation, send your key as the X-MCP-API-Key header:
Request a key in the Droplinked dashboard under Developer Settings → MCP Keys. Keys are per-agent (one per integration is recommended so you can revoke independently). Treat them like an API secret — they identify your agent for attribution, rate-limiting, and the commission rail.
The well-known discovery doc at https://apiv3.droplinked.com/.well-known/mcp.json is the canonical source of truth for the tool registry — names, descriptions, JSON-schema input shapes, output shapes. Any compliant MCP client uses it for auto-discovery.

Tool catalog

The full list (with input schemas + descriptions) is in the discovery doc. The most relevant tools for an agentic shopping flow:

Discovery

Transaction

Trust + financing

For the complete list (including admin tools, stockout monitoring, attestation lineage, and cart operations), see Inventory MCP, Underwriting MCP Tools, and Lender Trinity MCP Tools.

End-to-end example

A canonical agentic shopping loop: search → detail → order → receipt.

Per-merchant pinning

When the user arrives at a single storefront, scope your tool calls to that shop’s per-merchant surface — no shopUrl filter argument, no risk of fanning out across the catalog:
The per-merchant surface inherits the platform-wide tool catalog but pre-scopes every call. See Storefront MCP Discovery for the <meta name="mcp-url"> advertisement pattern.

Attribution

Every tool call you make against mcp.droplinked.com is tagged with the API key, which Droplinked maps to your agent identity. When a downstream conversion (placeOrderAgentic → payment-captured) is attributed to your agent, the 10% affiliate share in the 70/20/10 split routes to you. Through the hosted gateway, attribution is implicit in the API-key-signed tool-call chain. Against the backend directly (no signing key), call recordAgenticIntent to register intent against an opted-in merchant — that ledger row is what the settlement coordinator attributes the conversion to. See Attribution + Commission.

Rate limits + observability

  • Default: 600 tool calls / minute / API key. Burst headroom up to 1000/min.
  • 429 responses include Retry-After headers and a body listing the exceeded budget.
  • Discovery + manifest endpoints are unrate-limited.
  • All requests are logged with correlationId headers — quote them in support tickets for fast diagnosis.

Next steps

Optimize for ranking

Understand the catalog metadata your agent will rank against — so you can surface the best candidates.

Attribution + commission

Full walkthrough of how an agent-driven conversion routes USDC + fiat back to you.