npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mcp-india/stripe

v0.1.0

Published

MCP server for Stripe — payments, customers, subscriptions, products, invoices, and dashboard analytics

Downloads

16

Readme

@mcp-india/stripe

npm version

MCP server that exposes Stripe payments, subscriptions, and billing as AI-callable tools. Enables AI assistants to manage Stripe operations through the Model Context Protocol.

Quick Start

{
  "mcpServers": {
    "stripe": {
      "command": "npx",
      "args": ["-y", "@mcp-india/stripe"],
      "env": {
        "STRIPE_SECRET_KEY": "sk_test_..."
      }
    }
  }
}

Configuration

| Variable | Required | Description | |----------|----------|-------------| | STRIPE_SECRET_KEY | Yes | Stripe API secret key (Dashboard → API keys) |

Tools (21)

Payments (6 tools)

| Tool | Description | |------|-------------| | stripe_list_payments | List PaymentIntents with date/status/customer filters | | stripe_get_payment | Get PaymentIntent details by ID | | stripe_create_payment | Create a PaymentIntent (amount in cents) | | stripe_capture_payment | Capture an authorized PaymentIntent | | stripe_create_refund | Create a full or partial refund | | stripe_list_refunds | List refunds with payment/date filters |

Customers (4 tools)

| Tool | Description | |------|-------------| | stripe_list_customers | List customers with email/date filters | | stripe_get_customer | Get customer details by ID | | stripe_create_customer | Create a new customer | | stripe_search_customers | Search using Stripe Search API syntax |

Subscriptions & Invoices (6 tools)

| Tool | Description | |------|-------------| | stripe_list_subscriptions | List subscriptions with status/customer filters | | stripe_get_subscription | Get subscription details by ID | | stripe_create_subscription | Create a subscription (customer + price) | | stripe_cancel_subscription | Cancel at period end or immediately | | stripe_list_invoices | List invoices with customer/status/date filters | | stripe_get_invoice | Get invoice details by ID |

Products & Prices (4 tools)

| Tool | Description | |------|-------------| | stripe_list_products | List products with active/archived filter | | stripe_create_product | Create a product (name, description, metadata) | | stripe_list_prices | List prices filtered by product | | stripe_create_price | Create one-time or recurring price (amount in cents) |

Dashboard (1 tool)

| Tool | Description | |------|-------------| | stripe_dashboard_summary | Daily summary: revenue, charges, refunds, net amount |

Currency Convention

All monetary amounts are in cents (smallest currency unit):

  • 5000 = $50.00 USD
  • 2000 = $20.00 USD
  • 100 = $1.00 USD

Examples

List recent payments:

"Show me all payments from this week"

Create a customer and subscription:

"Create a customer for [email protected], then subscribe them to price_ABC at $20/month"

Daily revenue check:

"What's today's Stripe dashboard summary?"

Search for a customer:

"Search Stripe for customers with email containing acme.com"

Rate Limits

The server enforces a conservative 25 requests/second rate limit (Stripe's test mode limit). Requests exceeding this are queued automatically.

License

MIT