AgentHubAgentHub

Stripe

MCP ServerMCP Hub 中国

io.mcp-cn.stripe/mcp · vlatest

Stripe的MCP服务器,支持Stripe的读取和写入

概览

Stripe 是一个MCP Server,收录自 MCP Hub 中国。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

Stripe支付MCP

安装

选择你的平台查看安装方式

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

环境变量

STRIPE_SECRET_KEY必填secret

<YOUR_STRIPE_SECRET_KEY>

相关资源

统一 Manifest

{
  "id": "io.mcp-cn.stripe/mcp",
  "type": "mcp-server",
  "version": "latest",
  "displayName": "Stripe",
  "description": "Stripe的MCP服务器,支持Stripe的读取和写入",
  "author": {
    "name": "Stripe"
  },
  "homepage": "https://mcp-cn.com/server/92",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@stripe/mcp",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "STRIPE_SECRET_KEY",
            "description": "<YOUR_STRIPE_SECRET_KEY>",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [
    "use_count:7991",
    "Stripe",
    "支付",
    "MCP"
  ],
  "provenance": {
    "origin": "mcp-cn",
    "originalId": "@stripe/mcp",
    "originalUrl": "https://mcp-cn.com/server/92",
    "isOfficial": false,
    "status": "active"
  }
}
Stripe — MCP Server 安装与配置 · AgentHub