s

sumup-mcp

@sumup/sumup-mcp
0 Stars 187 次浏览 sumup 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "sumup": {
      "args": [
        "mcp-remote",
        "https://mcp.sumup.com/mcp",
        "--headers",
        "Authorization: Bearer \u003cyour-sumup-api-key\u003e"
      ],
      "command": "npx"
    }
  }
}

服务介绍

SumUp MCP Server

Documentation
License

SumUp's Model Context Protocol (MCP) server for interactions between large language models (LLMs) and SumUp APIs. The MCP server allows you to connect to SumUp's services from an MCP client (e.g. Cursor, Claude) and use natural language to work with your SumUp account.

Getting started

npm install
npm run dev

Every MCP request must include a SumUp API key through the Authorization: Bearer <apiKey> header. We currently don't support other authentication methods. The worker listens on /mcp for the Streamable HTTP transport and /sse for the legacy SSE transport.

You can get your API key from the developer settings in the SumUp Dashboard.

Using from an MCP client

Any client that speaks the Streamable HTTP transport can connect to this server. For example, using mcp-remote:

{
  "mcpServers": {
    "sumup": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.sumup.com/mcp",
        "--headers",
        "Authorization: Bearer <your-sumup-api-key>"
      ]
    }
  }
}

相关 MCP 服务