
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@chinchillaenterprises/mcp-stripe
Advanced tools
Multi-tenant Stripe MCP server with account management and credential persistence
A comprehensive Model Context Protocol (MCP) server for Stripe API integration, providing 13 powerful tools for managing products, customers, subscriptions, and more through natural language interactions with Claude.
# Install the server
claude mcp add stripe -s user \
-e STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key \
-- npx @chinchillaenterprises/mcp-stripe
# Start Claude and try it out
claude
# Try: "List all my products" or "Show me active subscriptions"
stripe_list_products
- List all products in your accountstripe_list_prices
- List all pricing tiers/plansstripe_list_coupons
- List all promo codes/couponsstripe_list_customers
- View customers in your accountstripe_list_subscriptions
- Check active subscriptionsstripe_get_product
- Get specific product details by IDstripe_get_price
- Get specific price details by IDstripe_get_coupon
- Get promo code details by IDstripe_get_subscription
- Get subscription details by IDstripe_create_coupon
- Create a new coupon/promo codestripe_delete_coupon
- Delete a coupon by IDstripe_list_invoices
- See billing historystripe_list_payment_methods
- Check saved payment methods for a customerstripe_search_customers
- Find customers by email/namesk_test_
or sk_live_
)# Add to Claude Code with user scope (available globally)
claude mcp add stripe -s user \
-e STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key \
-- npx @chinchillaenterprises/mcp-stripe
# Or add to project scope (team sharing)
claude mcp add stripe -s project \
-e STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key \
-- npx @chinchillaenterprises/mcp-stripe
Edit your ~/.claude.json
file:
{
"mcpServers": {
"stripe": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@chinchillaenterprises/mcp-stripe"],
"env": {
"STRIPE_SECRET_KEY": "sk_test_your_stripe_secret_key"
}
}
}
}
sk_test_...
keys for developmentsk_live_...
keys for production (be careful!)# List products
"Show me all my products"
"List active products only"
# Check customers
"List my customers"
"Find customers with email containing 'john'"
# Review subscriptions
"Show me all active subscriptions"
"List subscriptions for customer cus_1234567890"
# Product details
"Get details for product prod_1234567890"
# Subscription information
"Show me subscription details for sub_1234567890"
# Customer payment methods
"List payment methods for customer cus_1234567890"
# Revenue analysis
"List all paid invoices from last month"
"Show me all active subscriptions and their amounts"
# Customer support
"Search for customer with email john@example.com"
"Show me all invoices for customer cus_1234567890"
Most list tools accept these common parameters:
limit
(number): Number of items to return (max 100, default 10)active
(boolean): Filter by active status (where applicable)stripe_list_prices
product
(string): Filter by product IDstripe_list_subscriptions
status
(string): Filter by status (active
, canceled
, incomplete
, etc.)customer
(string): Filter by customer IDstripe_list_invoices
customer
(string): Filter by customer IDstatus
(string): Filter by status (draft
, open
, paid
, uncollectible
, void
)stripe_list_payment_methods
customer
(string): Required - Customer IDtype
(string): Payment method type (card
, us_bank_account
, etc.)stripe_search_customers
query
(string): Required - Search query (email, name, or phone)"STRIPE_SECRET_KEY environment variable is required"
sk_test_
or sk_live_
"No such customer/product/subscription"
Server not connecting
/mcp
in Claudeclaude --mcp-debug
for detailed logs# Check server status
claude mcp list
# Test server connection
claude mcp get stripe
# Debug mode
claude --mcp-debug
# Clone and setup
git clone https://github.com/chinchillaenterprises/ChillMCP
cd ChillMCP/mcp-stripe
# Install dependencies
npm install
# Build
npm run build
# Test locally
claude mcp add stripe-local -s user \
-e STRIPE_SECRET_KEY=sk_test_your_key \
-- node $(pwd)/dist/index.js
This server implements tools for the following Stripe resources:
MIT License - see LICENSE file for details.
Built by Chinchilla Enterprises - Part of the ChillMCP server collection.
FAQs
Multi-tenant Stripe MCP server with account management and credential persistence
We found that @chinchillaenterprises/mcp-stripe demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.