What it does
stripe is the official Stripe CLI. The killer feature is stripe listen --forward-to localhost:3000/api/webhooks/stripe, which proxies live webhook events to your local server so you can test the full payment flow without ngrok. Beyond that: trigger events (stripe trigger checkout.session.completed), browse customers and charges, generate test cards, and tail logs in real-time.
What TerminalSync adds
- Workflow guide. Install, login and webhook commands live next to the terminal where your AI is working, so a new machine has the right Stripe runbook immediately.
- Webhook secret in env vault. Put the
whsec_…value fromstripe listenin a project.envfile and TerminalSync can keep that file encrypted in the folder vault. - MCP bridge. Pair with the Stripe MCP connector and Claude can read customers, refund charges and query subscriptions through the connector's own Stripe auth.
Typical commands
stripe listen --forward-to localhost:3000/api/webhooks/stripe
stripe trigger checkout.session.completed
stripe customers list --limit 5
stripe logs tail
stripe products list