Skip to main content
The droplinked-mcp server gives any MCP-capable agent (Claude Desktop, Claude Code, Cursor, Continue, the Vercel AI SDK, …) first-class tools to discover Droplinked products, start a purchase, and earn affiliate commission — all against the public catalog API, no merchant credentials required.

Tools

ToolPurpose
search_productsFree-text search across the public Droplinked catalog
get_productFetch a single product by id
list_shop_productsPaginate a shop’s catalog by slug
start_checkoutBegin a purchase (closing the loop via Stripe ACP — see status)
get_feedReturn the Stripe ACP product-feed URL
All tools validate input with zod and call DROPLINKED_API_BASE (default https://apiv3.droplinked.com).

Install

claude mcp add droplinked \
  --command "node" \
  --args "/absolute/path/to/droplinked-mcp/dist/index.js" \
  --env DROPLINKED_API_BASE=https://apiv3.droplinked.com

Environment

VariableDefault
DROPLINKED_API_BASEhttps://apiv3.droplinked.com
DROPLINKED_PUBLIC_BASEhttps://droplinked.com
ACP_FEED_PATH/feed/acp.json
MCP_HTTP_PORT8787

How it fits together

   AI agent (Claude / GPT / Cursor)
              │  MCP tool call (search_products / get_product / start_checkout)

   droplinked-mcp  ◀── stdio or HTTP :8787/mcp
              │  authenticated catalog query

   Droplinked catalog API (apiv3)
              │  product results + checkout URLs

   Stripe ACP / x402 micropayment middleware

   70% merchant · 20% droplinked · 10% AI-agent affiliate
Status: start_checkout is currently stubbed; the full purchase loop lands as the Stripe ACP enrollment completes. search_products, get_product, list_shop_products, and get_feed are live against the public catalog today.