Skip to content
← Community packages

Inspect Stripe through the official Stripe MCP server.

Browse files

License
MIT
Published
August 23, 2026
Pinned commit
9d3933e
Rating
No ratings yet
Forks
0
Stars
0
Adaptation effort

README

@kody/stripe-mcp

Intent

Wrap the official Stripe MCP server (kody.mcp["stripe"]) so onboarding is add-server-and-authorize. This package is the MCP helper. The existing OAuth/API package @kody/stripe stays separate.

This listing is meant to be forked. After you fork, connect your Stripe workspace. Do not treat the live @kody/stripe-mcp connection as yours.

Share this listing as https://kody.codes/@kody/stripe-mcp

Required setup

Add the official Stripe MCP server, then authorize it.

await kody.mcp_server_add({
  name: 'stripe',
  url: 'https://mcp.stripe.com',
})

Open the returned authUrl. Helpers then call kody.mcp["stripe"]. The MCP server name stays stripe. The -mcp suffix is only the Kody package identity.

Do not register an OAuth app for the one-click path. For OAuth or API-key helpers, use @kody/stripe.

Exports

  • kody:@kody/stripe-mcp — package overview and MCP setup
  • kody:@kody/stripe-mcp/smoke-test — verify MCP (or report setup)
  • kody:@kody/stripe-mcp/list-customers

Example

import listCustomers from 'kody:@kody/stripe-mcp/list-customers'

export default async function main() {
  return listCustomers()
}
Report this listing

Log in to report this listing.