droplinked — Verified-Inventory Agentic Commerce
droplinked is onchain agentic commerce exposed to Codex over a hosted MCP
server at https://mcp.droplinked.com/mcp (streamable HTTP). Reach for it when
a task needs to find real, in-stock merchandise from KYB-verified merchants,
transact on the user's behalf, or read the onchain trust state behind a brand,
a lender, or a merchant's credit history.
droplinked is verification-first: every discovery and product result carries
a verification block (brand-verified flag, KYB tier, EAS attestation UID/chain).
When you cite a merchant, product, or recommendation, surface that trust state —
per the droplinked model, the agent IS the verification UX.
Access & auth (two-tier)
The server uses per-tool, two-tier auth:
- Read-only tools are public — no key needed. All the discovery, catalog,
and trust/verify/get read tools below work with no API key set. A fresh
install can list and call them immediately.
- Write tools require an
X-MCP-API-Key. The mutating tools (checkout,
payment, cart edits, and lending/attestation actions) return 401 without a
valid key. The key is supplied from the DROPLINKED_MCP_API_KEY environment
variable — never hardcode it. Request a write key from droplinked
(ops@droplinked.com).
A subset of write tools (lending applications, partner referral, business-buyer
search) additionally require a two-header model: X-MCP-API-Key authorizes the
request to the server, and Authorization: Bearer <agent-or-merchant-jwt>
carries the caller's identity to backend tools guarded by AgentIdentityGuard.
When to use droplinked
- The user wants to find or buy a real product from a verified merchant.
- The user wants an agent to run a checkout: build a cart, apply a discount,
hold stock, and take payment.
- The user asks whether a brand/merchant is verified, or wants its trust dossier.
- A lender/underwriter agent needs a merchant's credit-risk, repayment, or
underwriting signals, or wants to quote terms.
- A creator wants affiliate programs, or a merchant wants a WMS/3PL or lender
recommendation.
Tools
Discovery
find_merchant — find a merchant by slug, name, or category (MerchantCards).
find_inventory — discover SKU-level inventory by query/brand, with region,
price, in-stock, and verified-brand filters.
search_products / get_product / list_shop_products — search the public
catalog and fetch product/shop detail. Each response carries a parallel
verifications / verification block.
find_affiliate_programs — affiliate programs by vertical, commission, payout,
and on-chain-attestation status.
get_feed — URL of the droplinked product feed (verification metadata inline).
Agent-initiated checkout
start_checkout — mint a cart and get a hosted checkout URL (default) or a
Stripe client_secret (managed mode).
cart.addLine / cart.updateLineQuantity / cart.removeLine /
cart.applyDiscount — build and edit the cart incrementally.
quote_inventory_available — atomically quote price + delivery and hold
stock so two agent sessions can't double-allocate the last unit.
process_payment — finalize an order against a Stripe ACP payment intent
(idempotent on the intent id).
Trust fabric (onchain attestations)
verify_brand_attestation — resolve a shop's brand attestation (EAS Schema A).
request_brand_attestation / get_brand_attestation_status — submit and poll
a brand attestation request.
get_trust_dossier — compose brand + credit-risk + repayment into one
envelope with a conservative trustLevel (UNVERIFIED → T0…T3).
get_trust_fabric_stats — aggregate, no-PII platform counts.
Credit, underwriting & lending
verify_credit_risk / verify_repayment_history / verify_cross_attestation
— read Schema B/C/D attestations for a merchant.
verify_lender / get_lender_history / verify_methodology /
get_methodology_timeline / get_methodology_versions — forensic lender and
methodology lookups behind a credit-risk attestation.
get_underwriting_signals / get_upgrade_preview — one-round-trip
underwriting envelope and the aspirational tier-ladder preview.
recommend_lender / recommend_service_provider — ranked recommendations by
jurisdiction/archetype.
find_business_buyer — search the KYB cohort grid by tier (two-header auth).
quote_credit_terms / report_repayment — lender-side draft quote and
repayment event (some endpoints are scaffolded; the tool degrades gracefully).
get_lending_application_status / get_document_checklist /
list_lending_applications_for_merchant / request_partner_referral —
lending-application lifecycle (two-header auth for merchant-scoped reads/writes).
Recommended workflow
- Discover → verify → transact. Start with
find_merchant / find_inventory
(or search_products), prefer verifiedBrand=true results, then round-trip
the attestationUid through verify_brand_attestation (or pull
get_trust_dossier) before recommending or buying.
- Checkout loop.
find_inventory → quote_inventory_available (hold) →
start_checkout / cart.* to assemble the order → process_payment (or hand
back the hosted checkout URL). Surface the hold TTL and total to the user.
- Underwriting. For lender/credit questions,
get_underwriting_signals in
one call; drill into verify_credit_risk / verify_repayment_history and the
lender/methodology forensic chain when you need to justify a decision.
Output discipline
- Always surface verification state (brand-verified, KYB tier, attestation UID)
when citing a merchant, product, or recommendation.
- Treat credit tiers and trust levels as attestation reads, not your own
scoring — report what the on-chain record says.
- Confirm price, quantity, and any stock hold with the user before
process_payment. Prefer the smallest set of calls that answers the task.
1---2name: droplinked3description: Use the droplinked hosted MCP server to discover verified merchants and inventory, run an agent-initiated checkout (cart, quote-and-hold, payment), and read droplinked's onchain trust fabric — brand, credit-risk, and repayment attestations — as source-grounded, verification-first commerce context.4license: MIT5---67# droplinked — Verified-Inventory Agentic Commerce89droplinked is onchain agentic commerce exposed to Codex over a hosted MCP10server at `https://mcp.droplinked.com/mcp` (streamable HTTP). Reach for it when11a task needs to find real, in-stock merchandise from KYB-verified merchants,12transact on the user's behalf, or read the onchain trust state behind a brand,13a lender, or a merchant's credit history.1415droplinked is **verification-first**: every discovery and product result carries16a verification block (brand-verified flag, KYB tier, EAS attestation UID/chain).17When you cite a merchant, product, or recommendation, surface that trust state —18per the droplinked model, the agent IS the verification UX.1920## Access & auth (two-tier)2122The server uses **per-tool, two-tier auth**:2324- **Read-only tools are public — no key needed.** All the discovery, catalog,25 and trust/verify/get read tools below work with no API key set. A fresh26 install can list and call them immediately.27- **Write tools require an `X-MCP-API-Key`.** The mutating tools (checkout,28 payment, cart edits, and lending/attestation actions) return `401` without a29 valid key. The key is supplied from the `DROPLINKED_MCP_API_KEY` environment30 variable — never hardcode it. Request a write key from droplinked31 (ops@droplinked.com).3233A subset of write tools (lending applications, partner referral, business-buyer34search) additionally require a two-header model: `X-MCP-API-Key` authorizes the35request to the server, and `Authorization: Bearer <agent-or-merchant-jwt>`36carries the caller's identity to backend tools guarded by AgentIdentityGuard.3738## When to use droplinked3940- The user wants to find or buy a real product from a verified merchant.41- The user wants an agent to run a checkout: build a cart, apply a discount,42 hold stock, and take payment.43- The user asks whether a brand/merchant is verified, or wants its trust dossier.44- A lender/underwriter agent needs a merchant's credit-risk, repayment, or45 underwriting signals, or wants to quote terms.46- A creator wants affiliate programs, or a merchant wants a WMS/3PL or lender47 recommendation.4849## Tools5051### Discovery52- `find_merchant` — find a merchant by slug, name, or category (MerchantCards).53- `find_inventory` — discover SKU-level inventory by query/brand, with region,54 price, in-stock, and verified-brand filters.55- `search_products` / `get_product` / `list_shop_products` — search the public56 catalog and fetch product/shop detail. Each response carries a parallel57 `verifications` / `verification` block.58- `find_affiliate_programs` — affiliate programs by vertical, commission, payout,59 and on-chain-attestation status.60- `get_feed` — URL of the droplinked product feed (verification metadata inline).6162### Agent-initiated checkout63- `start_checkout` — mint a cart and get a hosted checkout URL (default) or a64 Stripe client_secret (`managed` mode).65- `cart.addLine` / `cart.updateLineQuantity` / `cart.removeLine` /66 `cart.applyDiscount` — build and edit the cart incrementally.67- `quote_inventory_available` — atomically quote price + delivery and **hold**68 stock so two agent sessions can't double-allocate the last unit.69- `process_payment` — finalize an order against a Stripe ACP payment intent70 (idempotent on the intent id).7172### Trust fabric (onchain attestations)73- `verify_brand_attestation` — resolve a shop's brand attestation (EAS Schema A).74- `request_brand_attestation` / `get_brand_attestation_status` — submit and poll75 a brand attestation request.76- `get_trust_dossier` — compose brand + credit-risk + repayment into one77 envelope with a conservative `trustLevel` (UNVERIFIED → T0…T3).78- `get_trust_fabric_stats` — aggregate, no-PII platform counts.7980### Credit, underwriting & lending81- `verify_credit_risk` / `verify_repayment_history` / `verify_cross_attestation`82 — read Schema B/C/D attestations for a merchant.83- `verify_lender` / `get_lender_history` / `verify_methodology` /84 `get_methodology_timeline` / `get_methodology_versions` — forensic lender and85 methodology lookups behind a credit-risk attestation.86- `get_underwriting_signals` / `get_upgrade_preview` — one-round-trip87 underwriting envelope and the aspirational tier-ladder preview.88- `recommend_lender` / `recommend_service_provider` — ranked recommendations by89 jurisdiction/archetype.90- `find_business_buyer` — search the KYB cohort grid by tier (two-header auth).91- `quote_credit_terms` / `report_repayment` — lender-side draft quote and92 repayment event (some endpoints are scaffolded; the tool degrades gracefully).93- `get_lending_application_status` / `get_document_checklist` /94 `list_lending_applications_for_merchant` / `request_partner_referral` —95 lending-application lifecycle (two-header auth for merchant-scoped reads/writes).9697## Recommended workflow98991. **Discover → verify → transact.** Start with `find_merchant` / `find_inventory`100 (or `search_products`), prefer `verifiedBrand=true` results, then round-trip101 the `attestationUid` through `verify_brand_attestation` (or pull102 `get_trust_dossier`) before recommending or buying.1032. **Checkout loop.** `find_inventory` → `quote_inventory_available` (hold) →104 `start_checkout` / `cart.*` to assemble the order → `process_payment` (or hand105 back the hosted checkout URL). Surface the hold TTL and total to the user.1063. **Underwriting.** For lender/credit questions, `get_underwriting_signals` in107 one call; drill into `verify_credit_risk` / `verify_repayment_history` and the108 lender/methodology forensic chain when you need to justify a decision.109110## Output discipline111112- Always surface verification state (brand-verified, KYB tier, attestation UID)113 when citing a merchant, product, or recommendation.114- Treat credit tiers and trust levels as **attestation reads**, not your own115 scoring — report what the on-chain record says.116- Confirm price, quantity, and any stock hold with the user before117 `process_payment`. Prefer the smallest set of calls that answers the task.