AgentHubAgentHub

Yeepay MCP 服务集成

MCP ServerMCP Hub 中国

io.mcp-cn.yeepay/yeepay-mcp · vlatest

Yeepay MCP 服务通过模型上下文协议(MCP)集成易宝支付服务。 功能特性: - create_webpage_yeepay_payment:创建易宝网页支付订单 必需参数:orderId(字符串)、amount(数字)、goodsName(字符串)、userIp(字符串) - query_yeepay_payment_status:查询易宝支付订单状态 必需参数:orderId(字符串) 请阅读中文文档以获取更多信息。

概览

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

YeepayMCP支付集成网页支付订单查询中文文档

安装

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

{
  "mcpServers": {
    "yeepay-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@yeepay/yeepay-mcp"
      ],
      "env": {
        "YOP_PARENT_MERCHANT_NO": "<YOP_PARENT_MERCHANT_NO>",
        "YOP_MERCHANT_NO": "<YOP_MERCHANT_NO>",
        "YOP_APP_PRIVATE_KEY": "<YOP_APP_PRIVATE_KEY>",
        "YOP_APP_KEY": "<YOP_APP_KEY>",
        "YOP_NOTIFY_URL": "<YOP_NOTIFY_URL>"
      }
    }
  }
}

环境变量

YOP_PARENT_MERCHANT_NO必填

Your parent merchant number

YOP_MERCHANT_NO必填

Your merchant number

YOP_APP_PRIVATE_KEY必填secret

Your private key

YOP_APP_KEY必填secret

Your application AppKey

YOP_NOTIFY_URL必填

https://your-domain.com/yeepay/notify

相关资源

统一 Manifest

{
  "id": "io.mcp-cn.yeepay/yeepay-mcp",
  "type": "mcp-server",
  "version": "latest",
  "displayName": "Yeepay MCP 服务集成",
  "description": "Yeepay MCP 服务通过模型上下文协议(MCP)集成易宝支付服务。\n\n功能特性:\n- create_webpage_yeepay_payment:创建易宝网页支付订单\n  必需参数:orderId(字符串)、amount(数字)、goodsName(字符串)、userIp(字符串)\n- query_yeepay_payment_status:查询易宝支付订单状态\n  必需参数:orderId(字符串)\n\n请阅读中文文档以获取更多信息。",
  "author": {
    "name": "dreambt"
  },
  "homepage": "https://mcp-cn.com/server/133",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@yeepay/yeepay-mcp",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "YOP_PARENT_MERCHANT_NO",
            "description": "Your parent merchant number",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "YOP_MERCHANT_NO",
            "description": "Your merchant number",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "YOP_APP_PRIVATE_KEY",
            "description": "Your private key",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "YOP_APP_KEY",
            "description": "Your application AppKey",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "YOP_NOTIFY_URL",
            "description": "https://your-domain.com/yeepay/notify",
            "isRequired": true,
            "isSecret": false
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [
    "use_count:36",
    "Yeepay",
    "MCP",
    "支付集成",
    "网页支付",
    "订单查询",
    "中文文档"
  ],
  "provenance": {
    "origin": "mcp-cn",
    "originalId": "@yeepay/yeepay-mcp",
    "originalUrl": "https://mcp-cn.com/server/133",
    "isOfficial": false,
    "status": "active"
  }
}
Yeepay MCP 服务集成 — MCP Server 安装与配置 · AgentHub