0.0.5 • Published 3 months ago
@sumup/mcp v0.0.5
SumUp Model Context Protocol (MCP) Server
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
- Go to
Cursor Settings
>MCP
- Click
+ Add new Global MCP Server
- 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_..."
}
}
}
}