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 hideokamoto/stripe-testing-mcp-tools --skill stripe-test-data-lifecyclegit clone --depth 1 https://github.com/hideokamoto/stripe-testing-mcp-toolsWrote 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/hideokamoto/stripe-testing-mcp-tools/stripe-test-data-lifecycle)<a href="https://agentmods.dev/skills/hideokamoto/stripe-testing-mcp-tools/stripe-test-data-lifecycle"><img src="https://agentmods.dev/badge/skills/hideokamoto/stripe-testing-mcp-tools/stripe-test-data-lifecycle/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/hideokamoto/stripe-testing-mcp-tools/stripe-test-data-lifecycle"><img src="https://agentmods.dev/badge/skills/hideokamoto/stripe-testing-mcp-tools/stripe-test-data-lifecycle.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.00076 | $0.00741 |
| Opus 5 | $0.00038 | $0.00370 |
| Sonnet 5 | $0.00015 | $0.00148 |
| Haiku 4.5 | $0.00008 | $0.00074 |
Grade A, and why
stripe-test-data-lifecycle 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 9d 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 — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Stripe Test Data Lifecycle
A round-trip workflow for Stripe test data: set up, verify, then clean up so the test account stays tidy. Test mode only (live keys are rejected).
1. Setup
- Customers:
create_stripe_test_customersnumber(default 1), and optionalname,email,description,payment_method_id,test_clock.- Every customer created here is tagged with
metadata.generator = stripe-testing-tools-mcp. The MCP server has no tool to list or search customers by metadata, so record the ids returned at creation for later cleanup. The tag is still useful for finding leftovers in the Stripe Dashboard or Stripe CLI. - If attaching a
test_clock, keepnumberat most 3 (seestripe-test-clock-constraints).
- Subscriptions:
create_stripe_test_subscriptioncustomer,items([{ price, quantity }]), optionalproration_behavior,payment_method_id.
- Products/prices: create these with your normal Stripe tooling or Dashboard; this MCP only archives/deletes products, it does not create them.
2. Verify
- Run your scenario (for time-based billing, follow
stripe-billing-cycle-test). - Confirm results (invoices, subscription status, charges) via the Stripe Dashboard in test mode or the Stripe API. The MCP does not expose list/read tools for these objects.
3. Cleanup (recommended order)
Tear down dependents before their dependencies to avoid leftover references:
- Delete customers:
delete_stripe_test_customerscustomer_ids: array of ids to delete. You must use the ids collected at creation — the MCP cannot search customers bygeneratormetadata. To recover lost ids, look them up in the Stripe Dashboard or CLI.- Deleting a customer immediately cancels its associated subscriptions (Stripe: Delete a customer), so do this before touching products.
- Archive products:
archive_stripe_test_productsproduct_idsand/orurls. Archiving setsactive: falseand is non-destructive (recoverable). Prefer this when a product may still be referenced or you want a soft cleanup.
- Delete products (optional, permanent):
delete_stripe_test_productsproduct_idsand/orurls. Permanent and irreversible. Stripe only lets you delete a product with no active prices/usage; if deletion fails, archive instead. Confirm the exact deletability rules against the Stripe docs when in doubt.
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.
- 9d ago First seen · 65 lines · 76 tokens per session scan A 327832fc24e0
stripe-test-data-lifecycle is a skill published in the GitHub repository hideokamoto/stripe-testing-mcp-tools (9 stars, last pushed 1mo ago), licensed MIT. It adds 76 tokens to every session and 741 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
qa
QA-test a website or web app and return a 1-5 quality score (5 = flawless, 1 = broken) with evidence. Use when the user wants to test, QA, evaluate, score, or "check how good" a site, page, flow, or app — including a local dev server (e.g. "qa test localhost:5173", "does the checkout work?", "rate this landing page").…
synthetic-monitoring
AI-powered synthetic monitoring skill for e-commerce websites. Designs automated user journey tests for add-to-cart, checkout, and payment flows with alerting rules and performance baselines.
visual-regression-testing
AI-powered visual regression testing skill for e-commerce websites. Designs screenshot comparison workflows, mobile/desktop visual checks, and change detection alerts to prevent conversion-killing UI bugs.
shopify-ab-testing
Run data-driven A/B tests on your Shopify store. Test product pages, pricing, images, copy, checkout flow, and marketing campaigns with proper statistical methodology.
postgres-commit-history-article
A workflow for comparing PostgreSQL source-code changes between two Git commits and, when useful, writing a Chinese Markdown article about them. PostgreSQL is a database system, and a commit is a saved change in a Git repository.
setup-trtmc-environment
Prepare a TensorRT-Model-Connect development or validation environment from a fresh checkout on a host without a known working setup.