Help us improve
Share bugs, ideas, or general feedback.
From stripe-test-mcp
Round-trip workflow for Stripe test data: set up customers/subscriptions, verify, then clean up with customer deletion and product archival/deletion. Includes tagging and cleanup order guidance.
npx claudepluginhub hideokamoto/stripe-testing-mcp-toolsHow this skill is triggered — by the user, by Claude, or both
Slash command
/stripe-test-mcp:stripe-test-data-lifecycleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A round-trip workflow for Stripe test data: set up, verify, then clean up so
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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).
create_stripe_test_customers
number (default 1), and optional name, email, description,
payment_method_id, test_clock.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.test_clock, keep number at most 3 (see
stripe-test-clock-constraints).create_stripe_test_subscription
customer, items ([{ price, quantity }]), optional
proration_behavior, payment_method_id.stripe-billing-cycle-test).Tear down dependents before their dependencies to avoid leftover references:
delete_stripe_test_customers
customer_ids: array of ids to delete. You must use the ids collected at
creation — the MCP cannot search customers by generator metadata. To
recover lost ids, look them up in the Stripe Dashboard or CLI.archive_stripe_test_products
product_ids and/or urls. Archiving sets active: false and is
non-destructive (recoverable). Prefer this when a product may still be
referenced or you want a soft cleanup.delete_stripe_test_products
product_ids and/or urls. 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.product_ids or urls (the URL
form looks products up by their url field).