[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-stripe-stripe-best-practices":3,"mdc-mia49j-key":41,"related-org-stripe-stripe-best-practices":655,"related-repo-stripe-stripe-best-practices":775},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":36,"sourceUrl":39,"mdContent":40},"stripe-best-practices","architect Stripe payment integrations","Guides Stripe integration decisions across API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing\u002Fsubscriptions, tax and registrations (Stripe Tax, automatic_tax, product tax codes), Treasury financial accounts, integration options (Checkout, Payment Element), migrating from deprecated Stripe APIs, and security best practices (API key management, restricted keys, webhooks, OAuth). Use when building, modifying, or reviewing any Stripe integration, including accepting payments, building marketplaces, integrating Stripe, processing payments, setting up subscriptions, collecting sales tax, VAT, or GST, creating connected accounts, or implementing secure key handling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"stripe","Stripe","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fstripe.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"SaaS","saas",{"name":20,"slug":21,"type":15},"Payments","payments",{"name":9,"slug":8,"type":15},1696,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Fai","2026-07-30T05:28:51.39802",null,309,[29,30,31,32,33,34,35],"ai","llm","llm-agents","mcp","python","typescript","workflows",{"repoUrl":24,"stars":23,"forks":27,"topics":37,"description":38},[29,30,31,32,33,34,35],"One-stop shop for building AI-powered products and businesses with Stripe.","https:\u002F\u002Fgithub.com\u002Fstripe\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Fstripe-best-practices","---\nname: stripe-best-practices\ndescription: >-\n  Guides Stripe integration decisions across API selection (Checkout Sessions vs\n  PaymentIntents), Connect platform setup (Accounts v2, controller properties),\n  billing\u002Fsubscriptions, tax and registrations (Stripe Tax, automatic_tax,\n  product tax codes), Treasury financial accounts, integration options\n  (Checkout, Payment Element), migrating from deprecated Stripe APIs, and\n  security best practices (API key management, restricted keys, webhooks,\n  OAuth). Use when building, modifying, or reviewing any Stripe integration,\n  including accepting payments, building marketplaces, integrating Stripe,\n  processing payments, setting up subscriptions, collecting sales tax, VAT, or\n  GST, creating connected accounts, or implementing secure key handling.\n\n---\n\nLatest Stripe API version: **2026-07-29.dahlia**. Always use the latest API version and SDK unless the user specifies otherwise.\n\nLatest SDK versions:\n\n| Language | Latest version |\n| --- | --- |\n| Ruby | 19.3.0 |\n| Python | 15.3.0 |\n| Node.js | 22.3.0 |\n| PHP | 20.3.0 |\n| Java | 33.1.0 |\n| Go | 86.1.0 |\n| .NET | 52.1.0 |\n\nIf you don’t have a Stripe account, you can call a CLI command to generate working API keys with no registration required. You can install the Stripe CLI (`npm i -g @stripe\u002Fcli`) and run the command `stripe sandbox create` to get started.\n\nIf `stripe sandbox create` is used, don’t use MCP.\n\nIf you try to use MCP after running sandbox creation, first make sure `stripe sandbox claim` is run. Use `stripe whoami --format json` for CLI auth checks; do not run `stripe config --list`.\n\nAPI key default: Always recommend a [restricted API key (RAK)](https:\u002F\u002Fdocs.stripe.com\u002Fkeys\u002Frestricted-api-keys.md) (`rk_` prefix) over a secret key (`sk_` prefix).\n\n## Integration routing\n\n| Building… | Recommended API | Details |\n| --- | --- | --- |\n| One-time payments | Checkout Sessions | \u003Creferences\u002Fpayments.md> |\n| Custom payment form with embedded UI | Checkout Sessions + Payment Element | \u003Creferences\u002Fpayments.md> |\n| Saving a payment method for later | Setup Intents | \u003Creferences\u002Fpayments.md> |\n| Connect platform or marketplace | Accounts v2 (`\u002Fv2\u002Fcore\u002Faccounts`) | \u003Creferences\u002Fconnect.md> |\n| Usage-based billing (new integration) | Metronome | \u003Creferences\u002Fbilling.md> |\n| Subscriptions or recurring billing | Billing APIs + Checkout Sessions | \u003Creferences\u002Fbilling.md> |\n| Sales tax, VAT, or GST compliance | Stripe Tax + Registrations API | \u003Creferences\u002Ftax.md> |\n| Embedded financial accounts \u002F banking | v2 Financial Accounts | \u003Creferences\u002Ftreasury.md> |\n| Security (key management, RAKs, webhooks, OAuth, 2FA, Connect liability) | See security reference | \u003Creferences\u002Fsecurity.md> |\n\nRead the relevant reference file before answering any integration question or writing code.\n\n## Critical rules\n\n- *Before enabling `automatic_tax: { enabled: true }`* (or calculating tax for a custom PaymentIntent), read the [tax reference](references\u002Ftax.md) and confirm the user has an active registration. Without one, Stripe calculates and collects no tax while the user believes tax is on (the most common Stripe Tax mistake).\n\n- *Never include `payment_method_types` in any Stripe API call*, with one exception: Terminal (in-person payments) integrations must pass `payment_method_types: ['card_present']` on the PaymentIntent. For all other integrations, omit this parameter entirely to enable dynamic payment methods, which enables you to configure payment method settings from the Dashboard and dynamically display the most relevant eligible payment methods to each customer to maximize conversion. To customize which payment methods you accept, use [`payment_method_configurations`](https:\u002F\u002Fdocs.stripe.com\u002Fpayments\u002Fpayment-method-configurations.md) or `excluded_payment_method_types` instead of `payment_method_types`.\n\n- On API version `2026-03-25.dahlia` or later, pass the parameter `integration_identifier` to `checkout.sessions.create` to tag sessions with a custom label for tracking and comparing checkout flows in the Dashboard. The label should include a suffix of 8 random letters.\n\n## Key documentation\n\nWhen the user’s request does not clearly fit a single domain above, consult:\n\n- [Integration Options](https:\u002F\u002Fdocs.stripe.com\u002Fpayments\u002Fpayment-methods\u002Fintegration-options.md) — Start here when designing any integration.\n- [API Tour](https:\u002F\u002Fdocs.stripe.com\u002Fpayments-api\u002Ftour.md) — Overview of Stripe’s API surface.\n- [Go Live Checklist](https:\u002F\u002Fdocs.stripe.com\u002Fget-started\u002Fchecklist\u002Fgo-live.md) — Review before launching.\n",{"data":42,"body":43},{"name":4,"description":6},{"type":44,"children":45},"root",[46,62,67,186,208,220,249,281,288,482,487,493,605,611,616],{"type":47,"tag":48,"props":49,"children":50},"element","p",{},[51,54,60],{"type":52,"value":53},"text","Latest Stripe API version: ",{"type":47,"tag":55,"props":56,"children":57},"strong",{},[58],{"type":52,"value":59},"2026-07-29.dahlia",{"type":52,"value":61},". Always use the latest API version and SDK unless the user specifies otherwise.",{"type":47,"tag":48,"props":63,"children":64},{},[65],{"type":52,"value":66},"Latest SDK versions:",{"type":47,"tag":68,"props":69,"children":70},"table",{},[71,90],{"type":47,"tag":72,"props":73,"children":74},"thead",{},[75],{"type":47,"tag":76,"props":77,"children":78},"tr",{},[79,85],{"type":47,"tag":80,"props":81,"children":82},"th",{},[83],{"type":52,"value":84},"Language",{"type":47,"tag":80,"props":86,"children":87},{},[88],{"type":52,"value":89},"Latest version",{"type":47,"tag":91,"props":92,"children":93},"tbody",{},[94,108,121,134,147,160,173],{"type":47,"tag":76,"props":95,"children":96},{},[97,103],{"type":47,"tag":98,"props":99,"children":100},"td",{},[101],{"type":52,"value":102},"Ruby",{"type":47,"tag":98,"props":104,"children":105},{},[106],{"type":52,"value":107},"19.3.0",{"type":47,"tag":76,"props":109,"children":110},{},[111,116],{"type":47,"tag":98,"props":112,"children":113},{},[114],{"type":52,"value":115},"Python",{"type":47,"tag":98,"props":117,"children":118},{},[119],{"type":52,"value":120},"15.3.0",{"type":47,"tag":76,"props":122,"children":123},{},[124,129],{"type":47,"tag":98,"props":125,"children":126},{},[127],{"type":52,"value":128},"Node.js",{"type":47,"tag":98,"props":130,"children":131},{},[132],{"type":52,"value":133},"22.3.0",{"type":47,"tag":76,"props":135,"children":136},{},[137,142],{"type":47,"tag":98,"props":138,"children":139},{},[140],{"type":52,"value":141},"PHP",{"type":47,"tag":98,"props":143,"children":144},{},[145],{"type":52,"value":146},"20.3.0",{"type":47,"tag":76,"props":148,"children":149},{},[150,155],{"type":47,"tag":98,"props":151,"children":152},{},[153],{"type":52,"value":154},"Java",{"type":47,"tag":98,"props":156,"children":157},{},[158],{"type":52,"value":159},"33.1.0",{"type":47,"tag":76,"props":161,"children":162},{},[163,168],{"type":47,"tag":98,"props":164,"children":165},{},[166],{"type":52,"value":167},"Go",{"type":47,"tag":98,"props":169,"children":170},{},[171],{"type":52,"value":172},"86.1.0",{"type":47,"tag":76,"props":174,"children":175},{},[176,181],{"type":47,"tag":98,"props":177,"children":178},{},[179],{"type":52,"value":180},".NET",{"type":47,"tag":98,"props":182,"children":183},{},[184],{"type":52,"value":185},"52.1.0",{"type":47,"tag":48,"props":187,"children":188},{},[189,191,198,200,206],{"type":52,"value":190},"If you don’t have a Stripe account, you can call a CLI command to generate working API keys with no registration required. You can install the Stripe CLI (",{"type":47,"tag":192,"props":193,"children":195},"code",{"className":194},[],[196],{"type":52,"value":197},"npm i -g @stripe\u002Fcli",{"type":52,"value":199},") and run the command ",{"type":47,"tag":192,"props":201,"children":203},{"className":202},[],[204],{"type":52,"value":205},"stripe sandbox create",{"type":52,"value":207}," to get started.",{"type":47,"tag":48,"props":209,"children":210},{},[211,213,218],{"type":52,"value":212},"If ",{"type":47,"tag":192,"props":214,"children":216},{"className":215},[],[217],{"type":52,"value":205},{"type":52,"value":219}," is used, don’t use MCP.",{"type":47,"tag":48,"props":221,"children":222},{},[223,225,231,233,239,241,247],{"type":52,"value":224},"If you try to use MCP after running sandbox creation, first make sure ",{"type":47,"tag":192,"props":226,"children":228},{"className":227},[],[229],{"type":52,"value":230},"stripe sandbox claim",{"type":52,"value":232}," is run. Use ",{"type":47,"tag":192,"props":234,"children":236},{"className":235},[],[237],{"type":52,"value":238},"stripe whoami --format json",{"type":52,"value":240}," for CLI auth checks; do not run ",{"type":47,"tag":192,"props":242,"children":244},{"className":243},[],[245],{"type":52,"value":246},"stripe config --list",{"type":52,"value":248},".",{"type":47,"tag":48,"props":250,"children":251},{},[252,254,263,265,271,273,279],{"type":52,"value":253},"API key default: Always recommend a ",{"type":47,"tag":255,"props":256,"children":260},"a",{"href":257,"rel":258},"https:\u002F\u002Fdocs.stripe.com\u002Fkeys\u002Frestricted-api-keys.md",[259],"nofollow",[261],{"type":52,"value":262},"restricted API key (RAK)",{"type":52,"value":264}," (",{"type":47,"tag":192,"props":266,"children":268},{"className":267},[],[269],{"type":52,"value":270},"rk_",{"type":52,"value":272}," prefix) over a secret key (",{"type":47,"tag":192,"props":274,"children":276},{"className":275},[],[277],{"type":52,"value":278},"sk_",{"type":52,"value":280}," prefix).",{"type":47,"tag":282,"props":283,"children":285},"h2",{"id":284},"integration-routing",[286],{"type":52,"value":287},"Integration routing",{"type":47,"tag":68,"props":289,"children":290},{},[291,312],{"type":47,"tag":72,"props":292,"children":293},{},[294],{"type":47,"tag":76,"props":295,"children":296},{},[297,302,307],{"type":47,"tag":80,"props":298,"children":299},{},[300],{"type":52,"value":301},"Building…",{"type":47,"tag":80,"props":303,"children":304},{},[305],{"type":52,"value":306},"Recommended API",{"type":47,"tag":80,"props":308,"children":309},{},[310],{"type":52,"value":311},"Details",{"type":47,"tag":91,"props":313,"children":314},{},[315,333,350,367,393,411,428,446,464],{"type":47,"tag":76,"props":316,"children":317},{},[318,323,328],{"type":47,"tag":98,"props":319,"children":320},{},[321],{"type":52,"value":322},"One-time payments",{"type":47,"tag":98,"props":324,"children":325},{},[326],{"type":52,"value":327},"Checkout Sessions",{"type":47,"tag":98,"props":329,"children":330},{},[331],{"type":52,"value":332},"\u003Creferences\u002Fpayments.md>",{"type":47,"tag":76,"props":334,"children":335},{},[336,341,346],{"type":47,"tag":98,"props":337,"children":338},{},[339],{"type":52,"value":340},"Custom payment form with embedded UI",{"type":47,"tag":98,"props":342,"children":343},{},[344],{"type":52,"value":345},"Checkout Sessions + Payment Element",{"type":47,"tag":98,"props":347,"children":348},{},[349],{"type":52,"value":332},{"type":47,"tag":76,"props":351,"children":352},{},[353,358,363],{"type":47,"tag":98,"props":354,"children":355},{},[356],{"type":52,"value":357},"Saving a payment method for later",{"type":47,"tag":98,"props":359,"children":360},{},[361],{"type":52,"value":362},"Setup Intents",{"type":47,"tag":98,"props":364,"children":365},{},[366],{"type":52,"value":332},{"type":47,"tag":76,"props":368,"children":369},{},[370,375,388],{"type":47,"tag":98,"props":371,"children":372},{},[373],{"type":52,"value":374},"Connect platform or marketplace",{"type":47,"tag":98,"props":376,"children":377},{},[378,380,386],{"type":52,"value":379},"Accounts v2 (",{"type":47,"tag":192,"props":381,"children":383},{"className":382},[],[384],{"type":52,"value":385},"\u002Fv2\u002Fcore\u002Faccounts",{"type":52,"value":387},")",{"type":47,"tag":98,"props":389,"children":390},{},[391],{"type":52,"value":392},"\u003Creferences\u002Fconnect.md>",{"type":47,"tag":76,"props":394,"children":395},{},[396,401,406],{"type":47,"tag":98,"props":397,"children":398},{},[399],{"type":52,"value":400},"Usage-based billing (new integration)",{"type":47,"tag":98,"props":402,"children":403},{},[404],{"type":52,"value":405},"Metronome",{"type":47,"tag":98,"props":407,"children":408},{},[409],{"type":52,"value":410},"\u003Creferences\u002Fbilling.md>",{"type":47,"tag":76,"props":412,"children":413},{},[414,419,424],{"type":47,"tag":98,"props":415,"children":416},{},[417],{"type":52,"value":418},"Subscriptions or recurring billing",{"type":47,"tag":98,"props":420,"children":421},{},[422],{"type":52,"value":423},"Billing APIs + Checkout Sessions",{"type":47,"tag":98,"props":425,"children":426},{},[427],{"type":52,"value":410},{"type":47,"tag":76,"props":429,"children":430},{},[431,436,441],{"type":47,"tag":98,"props":432,"children":433},{},[434],{"type":52,"value":435},"Sales tax, VAT, or GST compliance",{"type":47,"tag":98,"props":437,"children":438},{},[439],{"type":52,"value":440},"Stripe Tax + Registrations API",{"type":47,"tag":98,"props":442,"children":443},{},[444],{"type":52,"value":445},"\u003Creferences\u002Ftax.md>",{"type":47,"tag":76,"props":447,"children":448},{},[449,454,459],{"type":47,"tag":98,"props":450,"children":451},{},[452],{"type":52,"value":453},"Embedded financial accounts \u002F banking",{"type":47,"tag":98,"props":455,"children":456},{},[457],{"type":52,"value":458},"v2 Financial Accounts",{"type":47,"tag":98,"props":460,"children":461},{},[462],{"type":52,"value":463},"\u003Creferences\u002Ftreasury.md>",{"type":47,"tag":76,"props":465,"children":466},{},[467,472,477],{"type":47,"tag":98,"props":468,"children":469},{},[470],{"type":52,"value":471},"Security (key management, RAKs, webhooks, OAuth, 2FA, Connect liability)",{"type":47,"tag":98,"props":473,"children":474},{},[475],{"type":52,"value":476},"See security reference",{"type":47,"tag":98,"props":478,"children":479},{},[480],{"type":52,"value":481},"\u003Creferences\u002Fsecurity.md>",{"type":47,"tag":48,"props":483,"children":484},{},[485],{"type":52,"value":486},"Read the relevant reference file before answering any integration question or writing code.",{"type":47,"tag":282,"props":488,"children":490},{"id":489},"critical-rules",[491],{"type":52,"value":492},"Critical rules",{"type":47,"tag":494,"props":495,"children":496},"ul",{},[497,523,576],{"type":47,"tag":498,"props":499,"children":500},"li",{},[501,513,515,521],{"type":47,"tag":502,"props":503,"children":504},"em",{},[505,507],{"type":52,"value":506},"Before enabling ",{"type":47,"tag":192,"props":508,"children":510},{"className":509},[],[511],{"type":52,"value":512},"automatic_tax: { enabled: true }",{"type":52,"value":514}," (or calculating tax for a custom PaymentIntent), read the ",{"type":47,"tag":255,"props":516,"children":518},{"href":517},"references\u002Ftax.md",[519],{"type":52,"value":520},"tax reference",{"type":52,"value":522}," and confirm the user has an active registration. Without one, Stripe calculates and collects no tax while the user believes tax is on (the most common Stripe Tax mistake).",{"type":47,"tag":498,"props":524,"children":525},{},[526,539,541,547,549,560,562,568,570,575],{"type":47,"tag":502,"props":527,"children":528},{},[529,531,537],{"type":52,"value":530},"Never include ",{"type":47,"tag":192,"props":532,"children":534},{"className":533},[],[535],{"type":52,"value":536},"payment_method_types",{"type":52,"value":538}," in any Stripe API call",{"type":52,"value":540},", with one exception: Terminal (in-person payments) integrations must pass ",{"type":47,"tag":192,"props":542,"children":544},{"className":543},[],[545],{"type":52,"value":546},"payment_method_types: ['card_present']",{"type":52,"value":548}," on the PaymentIntent. For all other integrations, omit this parameter entirely to enable dynamic payment methods, which enables you to configure payment method settings from the Dashboard and dynamically display the most relevant eligible payment methods to each customer to maximize conversion. To customize which payment methods you accept, use ",{"type":47,"tag":255,"props":550,"children":553},{"href":551,"rel":552},"https:\u002F\u002Fdocs.stripe.com\u002Fpayments\u002Fpayment-method-configurations.md",[259],[554],{"type":47,"tag":192,"props":555,"children":557},{"className":556},[],[558],{"type":52,"value":559},"payment_method_configurations",{"type":52,"value":561}," or ",{"type":47,"tag":192,"props":563,"children":565},{"className":564},[],[566],{"type":52,"value":567},"excluded_payment_method_types",{"type":52,"value":569}," instead of ",{"type":47,"tag":192,"props":571,"children":573},{"className":572},[],[574],{"type":52,"value":536},{"type":52,"value":248},{"type":47,"tag":498,"props":577,"children":578},{},[579,581,587,589,595,597,603],{"type":52,"value":580},"On API version ",{"type":47,"tag":192,"props":582,"children":584},{"className":583},[],[585],{"type":52,"value":586},"2026-03-25.dahlia",{"type":52,"value":588}," or later, pass the parameter ",{"type":47,"tag":192,"props":590,"children":592},{"className":591},[],[593],{"type":52,"value":594},"integration_identifier",{"type":52,"value":596}," to ",{"type":47,"tag":192,"props":598,"children":600},{"className":599},[],[601],{"type":52,"value":602},"checkout.sessions.create",{"type":52,"value":604}," to tag sessions with a custom label for tracking and comparing checkout flows in the Dashboard. The label should include a suffix of 8 random letters.",{"type":47,"tag":282,"props":606,"children":608},{"id":607},"key-documentation",[609],{"type":52,"value":610},"Key documentation",{"type":47,"tag":48,"props":612,"children":613},{},[614],{"type":52,"value":615},"When the user’s request does not clearly fit a single domain above, consult:",{"type":47,"tag":494,"props":617,"children":618},{},[619,631,643],{"type":47,"tag":498,"props":620,"children":621},{},[622,629],{"type":47,"tag":255,"props":623,"children":626},{"href":624,"rel":625},"https:\u002F\u002Fdocs.stripe.com\u002Fpayments\u002Fpayment-methods\u002Fintegration-options.md",[259],[627],{"type":52,"value":628},"Integration Options",{"type":52,"value":630}," — Start here when designing any integration.",{"type":47,"tag":498,"props":632,"children":633},{},[634,641],{"type":47,"tag":255,"props":635,"children":638},{"href":636,"rel":637},"https:\u002F\u002Fdocs.stripe.com\u002Fpayments-api\u002Ftour.md",[259],[639],{"type":52,"value":640},"API Tour",{"type":52,"value":642}," — Overview of Stripe’s API surface.",{"type":47,"tag":498,"props":644,"children":645},{},[646,653],{"type":47,"tag":255,"props":647,"children":650},{"href":648,"rel":649},"https:\u002F\u002Fdocs.stripe.com\u002Fget-started\u002Fchecklist\u002Fgo-live.md",[259],[651],{"type":52,"value":652},"Go Live Checklist",{"type":52,"value":654}," — Review before launching.",{"items":656,"total":774},[657,672,679,695,712,727,742,757],{"slug":658,"name":658,"fn":659,"description":660,"org":661,"tags":662,"stars":23,"repoUrl":24,"updatedAt":671},"connect-recommend","configure Stripe Connect marketplace and payments","Use this skill when the user asks about Stripe Connect configuration, charge patterns, Dashboard access, or how to get started with Connect, is building a marketplace, platform, multi-vendor store, gig platform, or subscription platform, needs to pay out sellers, vendors, or providers, mentions split payments, revenue sharing, multi-party payments, or similar payment distribution concepts, provides a company URL or business description for a recommendation, builds SaaS that routes money between parties (for example, POS, booking, invoicing — not operational SaaS without payment routing), asks about onboarding or KYC for merchants, sellers, and vendors, mentions connected account Dashboard or responsibility configurations, or asks about payment flows, white-label payments, or embedded payments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[663,666,667,670],{"name":664,"slug":665,"type":15},"Configuration","configuration",{"name":20,"slug":21,"type":15},{"name":668,"slug":669,"type":15},"Sales","sales",{"name":9,"slug":8,"type":15},"2026-07-24T06:09:04.823685",{"slug":4,"name":4,"fn":5,"description":6,"org":673,"tags":674,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[675,676,677,678],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":680,"name":680,"fn":681,"description":682,"org":683,"tags":684,"stars":23,"repoUrl":24,"updatedAt":694},"stripe-directory","search the Stripe partner directory","Use when the user wants to find businesses, software, service providers, or partners for a specific industry, workflow, pain point, capability, or job to be done. Also use when the agent needs to programmatically purchase or consume a service. Use Stripe Directory to build a short relevant shortlist, even if the user does not mention Stripe Directory explicitly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[685,686,689,690,693],{"name":20,"slug":21,"type":15},{"name":687,"slug":688,"type":15},"Research","research",{"name":17,"slug":18,"type":15},{"name":691,"slug":692,"type":15},"Search","search",{"name":9,"slug":8,"type":15},"2026-06-10T07:45:48.374075",{"slug":696,"name":696,"fn":697,"description":698,"org":699,"tags":700,"stars":23,"repoUrl":24,"updatedAt":711},"stripe-docs","search Stripe documentation and API","Use when the user or agent needs to read, search, or look up Stripe documentation or API reference. Prefer this over curl or WebFetch for any docs.stripe.com content.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[701,704,707,710],{"name":702,"slug":703,"type":15},"API Development","api-development",{"name":705,"slug":706,"type":15},"Documentation","documentation",{"name":708,"slug":709,"type":15},"Reference","reference",{"name":9,"slug":8,"type":15},"2026-07-21T06:07:31.016426",{"slug":713,"name":713,"fn":714,"description":715,"org":716,"tags":717,"stars":23,"repoUrl":24,"updatedAt":726},"stripe-projects","bootstrap apps with Stripe Projects","Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: \"I need a database\", \"set up auth\", \"add caching\", \"give me a Postgres\", \"provision Redis\", \"I need hosting\", \"add a vector DB\", \"get me an API key for X\", \"get credentials for X\", \"sign up for a service\", \"set up monitoring\", \"show me the catalog\", \"what can I provision\", \"browse providers\", \"add an LLM provider\", \"configure model provider\", \"add email sending\", \"set up search\", \"add a message queue\", \"set up object storage\", \"add feature flags\". Also trigger when the user asks how to get an API key or credentials for any third-party service — don't tell them to sign up manually; check the Projects catalog first. Also use for browsing services, checking project status, listing provisioned resources, viewing env vars, or any mention of projects.dev or adding\u002Fprovisioning\u002Fconnecting a cloud service.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[718,721,724,725],{"name":719,"slug":720,"type":15},"CLI","cli",{"name":722,"slug":723,"type":15},"Local Development","local-development",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T05:32:51.44023",{"slug":728,"name":728,"fn":729,"description":730,"org":731,"tags":732,"stars":23,"repoUrl":24,"updatedAt":741},"upgrade-stripe","upgrade Stripe API versions and SDKs","Guide for upgrading Stripe API versions and SDKs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[733,736,737,740],{"name":734,"slug":735,"type":15},"Migration","migration",{"name":20,"slug":21,"type":15},{"name":738,"slug":739,"type":15},"SDK","sdk",{"name":9,"slug":8,"type":15},"2026-07-30T05:28:52.433023",{"slug":743,"name":743,"fn":744,"description":745,"org":746,"tags":747,"stars":754,"repoUrl":755,"updatedAt":756},"create-payment-credential","get secure payment credentials from Stripe","Gets secure, one-time-use payment credentials (cards, tokens) from a Link wallet so agents can complete purchases on behalf of users. Use when the user says \"get me a card\", \"buy something\", \"pay for X\", \"make a purchase\", \"I need to pay\", \"complete checkout\", or asks to transact on any merchant site. Use when the user asks to connect or log in to or sign up for their Link account.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[748,749,750,753],{"name":702,"slug":703,"type":15},{"name":20,"slug":21,"type":15},{"name":751,"slug":752,"type":15},"Security","security",{"name":9,"slug":8,"type":15},626,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Flink-cli","2026-07-30T05:32:09.679894",{"slug":758,"name":758,"fn":759,"description":760,"org":761,"tags":762,"stars":771,"repoUrl":772,"updatedAt":773},"pay-for-http-request","make HTTP requests with x402 payments","Make HTTP requests with automatic x402 payment support using the purl command line interface.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[763,764,767,768,769],{"name":702,"slug":703,"type":15},{"name":765,"slug":766,"type":15},"HTTP","http",{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":770,"slug":770,"type":15},"x402",177,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Fpurl","2026-04-06T18:53:35.680714",8,{"items":776,"total":820},[777,784,791,799,806,813],{"slug":658,"name":658,"fn":659,"description":660,"org":778,"tags":779,"stars":23,"repoUrl":24,"updatedAt":671},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[780,781,782,783],{"name":664,"slug":665,"type":15},{"name":20,"slug":21,"type":15},{"name":668,"slug":669,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":785,"tags":786,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[787,788,789,790],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":680,"name":680,"fn":681,"description":682,"org":792,"tags":793,"stars":23,"repoUrl":24,"updatedAt":694},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[794,795,796,797,798],{"name":20,"slug":21,"type":15},{"name":687,"slug":688,"type":15},{"name":17,"slug":18,"type":15},{"name":691,"slug":692,"type":15},{"name":9,"slug":8,"type":15},{"slug":696,"name":696,"fn":697,"description":698,"org":800,"tags":801,"stars":23,"repoUrl":24,"updatedAt":711},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[802,803,804,805],{"name":702,"slug":703,"type":15},{"name":705,"slug":706,"type":15},{"name":708,"slug":709,"type":15},{"name":9,"slug":8,"type":15},{"slug":713,"name":713,"fn":714,"description":715,"org":807,"tags":808,"stars":23,"repoUrl":24,"updatedAt":726},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[809,810,811,812],{"name":719,"slug":720,"type":15},{"name":722,"slug":723,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":728,"name":728,"fn":729,"description":730,"org":814,"tags":815,"stars":23,"repoUrl":24,"updatedAt":741},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[816,817,818,819],{"name":734,"slug":735,"type":15},{"name":20,"slug":21,"type":15},{"name":738,"slug":739,"type":15},{"name":9,"slug":8,"type":15},6]