AgentHubAgentHub

支付宝支付 MCP 工具

MCP ServerMCP Hub 中国

io.mcp-cn.alipay/mcp-server-alipay · vlatest

支付宝开放平台提供的 MCP Server,让你可以轻松将支付宝开放平台提供的交易创建、查询、退款等能力集成到你的 LLM 应用中,并进一步创建具备支付能力的智能工具

概览

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

MCP支付宝支付服务交易创建退款查询AI助手智能工具

安装

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

{
  "mcpServers": {
    "mcp-server-alipay": {
      "command": "npx",
      "args": [
        "-y",
        "@alipay/mcp-server-alipay"
      ],
      "env": {
        "AP_APP_ID": "<AP_APP_ID>",
        "AP_APP_KEY": "<AP_APP_KEY>",
        "AP_PUB_KEY": "<AP_PUB_KEY>",
        "AP_RETURN_URL": "<AP_RETURN_URL>",
        "AP_NOTIFY_URL": "<AP_NOTIFY_URL>",
        "...其他参数": "<...其他参数>"
      }
    }
  }
}

环境变量

AP_APP_ID必填

2014...222

AP_APP_KEY必填secret

MIIE...DZdM=

AP_PUB_KEY必填secret

MIIB...DAQAB

AP_RETURN_URL必填

https://success-page

AP_NOTIFY_URL必填

https://your-own-server

...其他参数必填

...其他值

相关资源

统一 Manifest

{
  "id": "io.mcp-cn.alipay/mcp-server-alipay",
  "type": "mcp-server",
  "version": "latest",
  "displayName": "支付宝支付 MCP 工具",
  "description": "支付宝开放平台提供的 MCP Server,让你可以轻松将支付宝开放平台提供的交易创建、查询、退款等能力集成到你的 LLM 应用中,并进一步创建具备支付能力的智能工具",
  "author": {
    "name": "calicosp"
  },
  "iconUrl": "https://alipay.yingxiaozh.com/uploads/images/a1dec28598a279f763616ebf221cd6ca.png",
  "homepage": "https://mcp-cn.com/server/127",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@alipay/mcp-server-alipay",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AP_APP_ID",
            "description": "2014...222",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "AP_APP_KEY",
            "description": "MIIE...DZdM=",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AP_PUB_KEY",
            "description": "MIIB...DAQAB",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AP_RETURN_URL",
            "description": "https://success-page",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "AP_NOTIFY_URL",
            "description": "https://your-own-server",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "...其他参数",
            "description": "...其他值",
            "isRequired": true,
            "isSecret": false
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [
    "use_count:6178",
    "MCP",
    "支付宝",
    "支付服务",
    "交易创建",
    "退款查询",
    "AI助手",
    "智能工具"
  ],
  "provenance": {
    "origin": "mcp-cn",
    "originalId": "@alipay/mcp-server-alipay",
    "originalUrl": "https://mcp-cn.com/server/127",
    "isOfficial": false,
    "status": "active"
  }
}
支付宝支付 MCP 工具 — MCP Server 安装与配置 · AgentHub