Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

stripe-mcp-integrationStripe MCP 集成

Agent Skill

stripe-mcp-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

20,558

周安装

502

GitHub Stars

1

下载量

5,810
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stripe-mcp-integration(Stripe MCP 集成)
来源仓库:https://github.com/wrsmith108/stripe-mcp-skill
仓库路径:skills/stripe-mcp-integration
安装命令:
npx skills add https://github.com/wrsmith108/stripe-mcp-skill --skill 'Stripe MCP Integration'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wrsmith108/stripe-mcp-skill --skill 'Stripe MCP Integration'

简介

stripe-mcp-integration 用于查找、检索和筛选相关信息。

  • 适用于需要根据关键词或任务场景快速定位候选结果的场景。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中调用,支持关键词驱动的信息筛选。
  • 安装前需确认权限范围、维护状态及是否触发联网或命令执行。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Stripe MCP Integration

Connect Claude to Stripe's payment infrastructure via the Model Context Protocol (MCP). This skill enables direct interaction with Stripe APIs for customer management, subscriptions, invoices, and documentation search.

What This Skill Does

  • Customer Management: Create, retrieve, update, and list customers
  • Subscription Handling: Manage subscription lifecycles, billing cycles, and pricing
  • Invoice Operations: Create, finalize, send, and retrieve invoices
  • Product Catalog: Manage products and prices for your offerings
  • Documentation Search: Query Stripe's official docs directly

Quick Start

Choose your installation method:

Option 1: Remote HTTP (Recommended)

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "stripe": {
      "type": "http",
      "url": "https://mcp.stripe.com/v1/sse"
    }
  }
}

Authenticate when prompted with stripe_sk_... key.

Option 2: Local npm

# Install the MCP server
npm install -g @stripe/mcp

# Add to settings
claude mcp add stripe -- npx -y @stripe/mcp

Option 3: Project.mcp.json

Create .mcp.json in your project root:

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

Available MCP Tools

ToolDescriptionExample Usage
stripe_create_customerCreate a new customer"Create customer with email user@example.com"
stripe_retrieve_customerGet customer by ID"Get customer cus_xxx"
stripe_list_customersList all customers"Show my Stripe customers"
stripe_create_productCreate a product"Create product 'Pro Plan' for $29/month"
stripe_list_productsList products"Show all products"
stripe_create_subscriptionStart a subscription"Subscribe customer to price_xxx"
stripe_cancel_subscriptionCancel subscription"Cancel subscription sub_xxx"
stripe_create_invoiceCreate draft invoice"Create invoice for customer cus_xxx"
stripe_finalize_invoiceFinalize for payment"Finalize invoice in_xxx"
stripe_search_documentationSearch Stripe docs"Search Stripe docs for webhooks"

Stripe ID Prefixes

Use these prefixes to validate IDs in your code:

ObjectPrefixExample
Customercus_cus_NffrFeUfNV2Hib
Subscriptionsub_sub_1MowQVLkdIwHu7ixeRlqHVzs
Priceprice_price_1MowQULkdIwHu7ixspc
Productprod_prod_NWjs8kKbJWmuuc
Invoicein_in_1MtHbELkdIwHu7ixl4OzzPMI
Payment Intentpi_pi_3MtwBwLkdIwHu7ix28a3tqPa
Eventevt_evt_1NG8Du2eZvKYlo2CUI79vXWy
Webhook Endpointwe_we_1Mr5jALkdIwHu7ixNsD8AdJZ
Checkout Sessioncs_cs_test_a1b2c3d4

Test Mode Development

Test Cards

Card NumberScenario
4242424242424242Successful payment
4000000000000002Card declined
4000002500003155Requires 3D Secure
4000000000009995Insufficient funds
4000000000000341Attach fails

Stripe CLI Testing

# Install Stripe CLI
brew install stripe/stripe-cli/stripe

# Login to your account
stripe login

# Listen for webhooks locally
stripe listen --forward-to localhost:3000/api/webhooks/stripe

# Trigger test events
stripe trigger checkout.session.completed
stripe trigger customer.subscription.created
stripe trigger invoice.payment_succeeded

Environment Variables

VariableRequiredDescription
STRIPE_SECRET_KEYYesAPI key (sk_test_... or sk_live_...)
STRIPE_WEBHOOK_SECRETFor webhooksWebhook signing secret (whsec_...)
STRIPE_API_VERSIONNoLock API version (e.g., 2024-12-18.acacia)

Secure Key Storage

Never commit keys to version control. Use environment variables or a secrets manager:

# Development: Use .env file (gitignored)
echo "STRIPE_SECRET_KEY=sk_test_..." >> .env

# Production: Use your platform's secrets manager
# - Cloud platforms: Environment variables or secret managers
# - AWS: Secrets Manager or Parameter Store
# - Self-hosted: HashiCorp Vault or similar

Webhook Signature Verification

Node.js Pattern

import Stripe from 'stripe';

const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!);

export async function handleWebhook(request: Request) {
  const body = await request.text();
  const signature = request.headers.get('stripe-signature')!;

  let event: Stripe.Event;

  try {
    event = stripe.webhooks.constructEvent(
      body,
      signature,
      process.env.STRIPE_WEBHOOK_SECRET!
    );
  } catch (err) {
    console.error('Webhook signature verification failed:', err);
    return new Response('Webhook Error', { status: 400 });
  }

  // Handle the event
  switch (event.type) {
    case 'checkout.session.completed':
      const session = event.data.object as Stripe.Checkout.Session;
      await fulfillOrder(session);
      break;
    case 'customer.subscription.updated':
      const subscription = event.data.object as Stripe.Subscription;
      await updateSubscriptionStatus(subscription);
      break;
    // ... handle other events
  }

  return new Response('OK', { status: 200 });
}

Deno/Edge Function Pattern

import Stripe from 'npm:stripe@latest';

const stripe = new Stripe(Deno.env.get('STRIPE_SECRET_KEY')!, {
  apiVersion: '2024-12-18.acacia',
});

Deno.serve(async (req) => {
  const body = await req.text();
  const signature = req.headers.get('stripe-signature')!;

  // IMPORTANT: Deno requires async verification
  const event = await stripe.webhooks.constructEventAsync(
    body,
    signature,
    Deno.env.get('STRIPE_WEBHOOK_SECRET')!
  );

  // Handle event...
  return new Response(JSON.stringify({ received: true }));
});
Critical: Deno and edge runtimes require constructEventAsync(), not constructEvent().

Common Webhook Events

EventWhen It FiresTypical Action
checkout.session.completedSuccessful checkoutGrant access, send confirmation
customer.subscription.createdNew subscriptionProvision account, welcome email
customer.subscription.updatedPlan change, renewalUpdate access level
customer.subscription.deletedCancellationRevoke access, send offboarding
invoice.payment_succeededSuccessful chargeUpdate billing records
invoice.payment_failedFailed chargeNotify customer, retry logic

Troubleshooting

"No such customer" Error

StripeInvalidRequestError: No such customer: 'cus_xxx'

Cause: Customer ID doesn't exist or using test ID in live mode. Fix: Verify the ID exists in your Stripe Dashboard. Check you're using matching test/live keys.

Webhook Signature Mismatch

Webhook signature verification failed

Cause: Wrong webhook secret or modified payload. Fix:

  1. Get the correct secret from Stripe Dashboard → Webhooks → Signing secret
  2. For local testing, use the secret printed by stripe listen
  3. Ensure you're reading the raw body, not parsed JSON

Rate Limiting

StripeRateLimitError: Too many requests

Cause: Exceeding 100 read or 100 write requests per second. Fix: Implement exponential backoff, batch operations where possible, cache read results.


Sub-Documentation


Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.07%
按下载量换算2,154

Claude

29.12%
按下载量换算1,692

Cursor

19.02%
按下载量换算1,105

Gemini CLI

8.96%
按下载量换算521

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills