MCP tool
complete_checkout
Complete checkout (agentic payment)
Complete a $9 CapBench report purchase using an agent-provided Stripe Shared Payment Granted Token. Use ONLY after the user explicitly confirms the purchase. Does NOT accept raw card numbers or CVC. Creates and confirms a Stripe PaymentIntent for the server-verified amount, then unlocks the report on success.
Input
| Field | Type | Notes |
|---|---|---|
| order_idrequired | string | |
| report_request_idrequired | string | |
| shared_payment_granted_token | string | Stripe Shared Payment Granted Token (spt_...). Never a raw card number. |
| user_confirmed_purchaserequired | boolean | |
| agent_platform | string | |
| idempotency_key | string |
Example call
Confirm the $9 purchase in-agent.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "complete_checkout",
"arguments": {
"order_id": "order_abc",
"report_request_id": "fr_abc",
"shared_payment_granted_token": "spt_123",
"user_confirmed_purchase": true
}
}
}POST to https://www.capbench.com/api/mcp.
Output
Discovery/preview data plus a `$9` order with both payment options (Stripe Checkout URL and the agentic `complete_checkout` path), a `report_request_id`/`order_id`, and — once paid — the full report. Wrapped in the standard envelope below.
Example response
Every result is wrapped in the standard CapBench envelope — same canonical_url, data_freshness, methodology, source_summary, caveats, and citation as the REST API.
{
"ok": true,
"canonical_url": "https://www.capbench.com/mcp",
"data_freshness": {
"sba_records_through": "2026-05-31",
"fdic_records_through": "2026-03-31",
"dealroom_last_updated": "2026-06-17",
"timezone": "America/Chicago"
},
"source_summary": [
"Public SBA 7(a) loan records",
"FDIC institution data",
"CapBench lender and franchise enrichment"
],
"results": {
"status": "paid",
"report_request_id": "fr_abc123",
"payment_method": "agentic_payment_spt",
"report_url": "https://www.capbench.com/franchise-report/fr_abc123?access_token=…"
},
"caveats": [
"CapBench data is market intelligence, not a credit decision or SBA eligibility determination."
],
"citation": {
"label": "CapBench SBA Intelligence",
"url": "https://www.capbench.com/mcp",
"source_type": "CapBench Data"
}
}Caveats
- The server sets the $9 price; the agent must not. CapBench never accepts raw card or bank credentials.
- Report content is market intelligence, not a credit decision or guarantee of financing.
Continuation URL
Returns a continuation URL to the CapBench report page and, for paid tools, a Stripe Checkout URL. The agentic path uses complete_checkout with a Shared Payment Granted Token.
Lead & consent
Anonymous until the user acts. Payment requires explicit user confirmation; CapBench never receives raw card or bank credentials (Stripe processes payment). No lender introduction happens without user consent.