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

@neuroequalityorg/mcp-stripe

v1.0.0

Published

MCP server for Stripe API integration - list customers, create payment links, manage subscriptions, and more

Readme

@neuroequalityorg/mcp-stripe

MCP (Model Context Protocol) server for Stripe API integration. Enables AI assistants like Claude to interact with Stripe for payment processing, customer management, and subscriptions.

Features

  • list_customers - List and filter Stripe customers
  • create_payment_link - Create payment links for one-time or recurring payments
  • get_balance - Get current account balance
  • list_subscriptions - List and filter subscriptions
  • create_product - Create products with optional default pricing

Installation

npm install -g @neuroequalityorg/mcp-stripe

Or use npx:

npx @neuroequalityorg/mcp-stripe

Configuration

Set your Stripe API key as an environment variable:

export STRIPE_API_KEY=sk_live_xxx  # or sk_test_xxx for test mode

Or use STRIPE_SECRET_KEY:

export STRIPE_SECRET_KEY=sk_live_xxx

Usage with Claude Desktop

Add to your Claude Desktop configuration (~/.config/claude/claude_desktop_config.json on Linux/Mac or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "stripe": {
      "command": "npx",
      "args": ["@neuroequalityorg/mcp-stripe"],
      "env": {
        "STRIPE_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Tools

list_customers

List Stripe customers with optional filtering.

Parameters:

  • limit (number, optional): Max customers to return (1-100, default: 10)
  • email (string, optional): Filter by email address
  • starting_after (string, optional): Pagination cursor (customer ID)

Example:

{
  "limit": 20,
  "email": "[email protected]"
}

create_payment_link

Create a Stripe Payment Link. Either provide an existing price_id or create a new product/price on the fly.

Parameters:

  • price_id (string, optional): Existing Stripe Price ID
  • product_name (string, optional): Name for new product (required if no price_id)
  • unit_amount (number, optional): Price in cents (required if no price_id)
  • currency (string, optional): Currency code (default: "usd")
  • quantity (number, optional): Item quantity (default: 1)
  • allow_promotion_codes (boolean, optional): Allow promo codes (default: false)

Example (new product):

{
  "product_name": "Premium Plan",
  "unit_amount": 2999,
  "currency": "usd"
}

Example (existing price):

{
  "price_id": "price_1234567890"
}

get_balance

Get current Stripe account balance.

Parameters: None

Returns: Available and pending amounts by currency.

list_subscriptions

List Stripe subscriptions with optional filtering.

Parameters:

  • limit (number, optional): Max subscriptions to return (1-100, default: 10)
  • customer (string, optional): Filter by customer ID
  • status (string, optional): Filter by status (active, canceled, past_due, etc.)
  • starting_after (string, optional): Pagination cursor (subscription ID)

Example:

{
  "customer": "cus_xxx",
  "status": "active",
  "limit": 50
}

create_product

Create a new Stripe product with optional default pricing.

Parameters:

  • name (string, required): Product name
  • description (string, optional): Product description
  • active (boolean, optional): Available for purchase (default: true)
  • metadata (object, optional): Key-value metadata
  • default_price_data (object, optional): Default price configuration
    • unit_amount (number): Price in cents
    • currency (string): Currency code (default: "usd")
    • recurring (object, optional): For subscriptions
      • interval: "day", "week", "month", or "year"
      • interval_count (number): Intervals between billings (default: 1)

Example (one-time):

{
  "name": "Widget Pro",
  "description": "Premium widget with all features",
  "default_price_data": {
    "unit_amount": 4999,
    "currency": "usd"
  }
}

Example (subscription):

{
  "name": "Pro Plan",
  "description": "Monthly subscription",
  "default_price_data": {
    "unit_amount": 1999,
    "currency": "usd",
    "recurring": {
      "interval": "month"
    }
  }
}

Security

  • Never commit your Stripe API keys to version control
  • Use test mode keys (sk_test_...) during development
  • Restrict API key permissions in Stripe Dashboard when possible

License

MIT

Author

NeuralEquality.org