Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Jignesh-Ponamwar/skills-mcp --skill stripe-integrationgit clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/stripe-integration)<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/stripe-integration"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/stripe-integration/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/stripe-integration"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/stripe-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00079 | $0.01929 |
| Opus 5 | $0.00039 | $0.00964 |
| Sonnet 5 | $0.00016 | $0.00386 |
| Haiku 4.5 | $0.00008 | $0.00193 |
Grade A, and why
stripe-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Stripe Integration Skill
Critical Rule
Always use the latest Stripe API version: 2026-03-25.dahlia unless the user explicitly requests otherwise.
Step 1: Choose the Right Stripe API
| Building… | Recommended API |
|---|---|
| One-time payments with hosted UI | Checkout Sessions |
| Custom payment form embedded in your page | Checkout Sessions + Payment Element |
| Saving payment method for later | Setup Intents |
| Marketplace or platform | Accounts v2 (/v2/core/accounts) |
| Subscriptions / recurring billing | Billing APIs + Checkout Sessions |
| Embedded banking / financial accounts | Treasury v2 |
When in doubt, start with Checkout Sessions - it handles PCI compliance, 3D Secure, and local payment methods automatically.
Step 2: Initial Setup
Install SDK
# Python
pip install stripe
# Node.js
npm install stripe
# Go
go get github.com/stripe/stripe-go/v76
Configure SDK
# Python
import stripe
stripe.api_key = os.environ["STRIPE_SECRET_KEY"] # never hardcode
stripe.api_version = "2026-03-25.dahlia"
// TypeScript / Node.js
import Stripe from 'stripe'
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
apiVersion: '2026-03-25.dahlia',
})
Step 3: One-Time Payments (Checkout Sessions)
// Server: Create session
const session = await stripe.checkout.sessions.create({
payment_method_types: ['card'],
line_items: [{
price_data: {
currency: 'usd',
product_data: { name: 'Pro Plan' },
unit_amount: 2000, // $20.00 in cents
},
quantity: 1,
}],
mode: 'payment',
success_url: 'https://example.com/success?session_id={CHECKOUT_SESSION_ID}',
cancel_url: 'https://example.com/cancel',
})
return { url: session.url } // redirect user to this URL
// After payment - verify via webhook, NOT success_url query param
Step 4: Subscriptions (Recurring Billing)
Step 4a: Create a Product and Price in Stripe Dashboard (or API)
const price = await stripe.prices.create({
currency: 'usd',
unit_amount: 1000, // $10/month
recurring: { interval: 'month' },
product_data: { name: 'Pro Subscription' },
})
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 283 lines · 79 tokens per session scan A b28063f6fed2
stripe-integration is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 79 tokens to every session and 1,929 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
Braintree Automation
Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions.
stripe-payments
Add Stripe payments to a web app — Checkout Sessions, Payment Intents, subscriptions, webhooks, customer portal, and pricing pages. Covers the decision of which Stripe API to use, produces working integration code, and handles webhook verification. No MCP server needed — uses Stripe npm package directly. Triggers…
saas-billing
Implement and audit SaaS billing systems, subscription state machines, secure webhooks, and local database synchronization / Implementasi dan audit sistem billing SaaS, state machine langganan, webhook aman, dan sinkronisasi database lokal.
payment-gateway-expert
Expert guide for integrating payment gateways (Stripe, PayPal, Xendit, Midtrans, DOKU) and secure webhooks into SaaS platforms / Panduan ahli integrasi payment gateway dan webhook aman.
doku-mcp-server
Expert guide for DOKU Model Context Protocol (MCP) Server integration. Enables AI Agentic Commerce with tools for payment links, Virtual Accounts, QRIS, transaction status checks, and client configuration (Claude Desktop, Cursor, AGY) / Panduan ahli DOKU MCP Server untuk AI Agentic Commerce.
stripe-integration
Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or implementing secure checkout flows.