mcp.droplinked.com already serves a per-merchant tool surface at
/{shopSlug}/manifest, /{shopSlug}/mcp/tools, and /{shopSlug}/mcp/tools/{name} — but an
agent that arrives at your storefront in the wild has no signal pointing it at that surface.
This page closes that gap.
The convergent pattern across ChatGPT, Claude, Cursor, Continue, Cline, and the Vercel AI
SDK is the same: probe the storefront <head> for a <meta name="mcp-url"> tag. Add one
line of HTML and your storefront becomes agent-shoppable — additive distribution, not
migration. Your existing checkout, catalog, and merchant config are untouched.
The pattern
<head> and agents will discover
your per-merchant MCP surface on the next page load.
What changes
- An agent given only your storefront URL can probe the HTML, discover your MCP URL, fetch your manifest, and call your tools — no prior knowledge of Droplinked required.
- No additional auth is required. The per-merchant surface is unauthenticated; merchants opt in by registering the shop on Droplinked.
- Your catalog becomes discoverable by agentic shopping surfaces — Stripe ACP, OpenAI ChatGPT, Claude.ai, and any MCP-capable client.
Implementation by storefront type
- droplinked.io
- Next.js / React
- Shopify Liquid
- Generic HTML
Storefronts hosted on
droplinked.io/{shopSlug} advertise the meta tag automatically.
No action needed — the storefront template injects it at render time using your shop
slug.Verify with:Discovery walkthrough
Agent receives a storefront URL
The agent gets your storefront URL from a user prompt, a search result, a link in chat,
or a referrer. It knows nothing else about your shop.
Agent fetches the storefront HTML and parses the meta tag
The agent issues a
GET for the storefront page and scans the <head> for
<meta name="mcp-url">. The content attribute is your per-merchant MCP base URL.Agent fetches the per-merchant manifest
Agent fetches the tool list
Validation
Verify your storefront emits the meta tag:<meta name="mcp-url" content="…">.
Verify the per-merchant manifest responds:
Fallback discovery
If your storefront can’t add the meta tag (e.g. a hosted platform with no<head> editor),
agents can still find your shop via:
- Platform-wide discovery — the well-known doc at
https://mcp.droplinked.com/.well-known/mcp.jsoncarries amerchantDiscovery.pathTemplatean agent can substitute any shop slug into. - The
find_merchanttool — exposed on the platform-wide MCP server, searchable by slug, name, or category. - The ACP feed —
https://apiv3.droplinked.com/feed/acp.jsonlists every Droplinked shop’s catalog and is ingested by Stripe ACP and other agentic shopping surfaces.
Privacy & security
The per-merchant manifest exposes only catalog metadata (shop name, slug, product feed
URL, tool URLs) and payment-method categories. It does not expose PII, merchant
operator data, sales numbers, or internal config. Merchants can opt out by un-registering
the shop (operator-gated).
Related
- MCP server — platform-wide tool inventory inherited by every per-merchant surface.
- Connect your store — register a shop so its per-merchant surface comes online.
- Lender trinity MCP tools — agent-facing trust-fabric tools that pair with per-merchant discovery.
- Platform model — how the agentic layer sits atop the commerce primitives.