io.github.sumup/mcp icon

SumUp MCP Server

by Sumup

io.github.sumup/mcp

Trusted by LightNow

Tools to explore SumUp accounts, payments, customers, and payouts.

Version 0.1.1 · latest
Finance
Local
View source

SumUp MCP Server · v0.1.1 (latest)

by Sumup

65

SumUp Model Context Protocol (MCP) Server

Documentation

Model Context Protocol (MCP) is a standardized protocol designed to manage context between large language models (LLMs) and external systems.

Prerequisites

The SumUp Model Context Protocol (MCP) Server requires Node.js LTS version to run properly.

Setup

To run the SumUp Model Context Protocol (MCP) Server using Node.js npx, use the following command:

npx -y @sumup/mcp@latest

Installation

Cursor

  1. Go to Cursor Settings > MCP
  2. Click + Add new Global MCP Server
  3. Add the following configuration to your global .cursor/mcp.json file.
{
  "mcpServers": {
    "sumup": {
      "command": "npx",
      "args": [
          "-y",
          "@sumup/mcp"
      ],
      "env": {
      	"SUMUP_API_KEY": "sup_sk_..."
      }
    }
  }
}

See the Cursor documentation for more details. Note: You can also add this to your project specific cursor configuration. (Supported in Cursor 0.46+)

Claude

Add the following to your claude_desktop_config.json file. See the Claude Desktop documentation for more details.

{
  "mcpServers": {
    "sumup": {
      "command": "npx",
      "args": [
          "-y",
          "@sumup/mcp"
      ],
      "env": {
      	"SUMUP_API_KEY": "sup_sk_..."
      }
    }
  }
}