Yuno Payments
Access the Yuno payment platform API to manage payments, customers, and checkouts programmatically.
@yuno-payments/yuno-mcp
MCP server exposing the Yuno API as Model Context Protocol (MCP) tools
This package provides an MCP server that exposes the Yuno payment platform API as Model Context Protocol tools, enabling programmatic access for AI agents, automation, and advanced workflows.
https://github.com/user-attachments/assets/8f41f3d7-5c52-4d8c-a5fd-681d6ab54b75
Features
- Exposes Yuno API endpoints as MCP tools
- Enables AI and automation workflows with Yuno
- TypeScript support
- Easy integration with Cursor and other MCP-compatible agents
Using with Cursor or Claude Desktop
You can use this MCP server with Cursor or Claude Desktop to enable AI-driven payment flows, customer creation, and more.
1. Build the Project
Clone this project and build it locally:
git clone https://github.com/yuno-payments/yuno-mcp.git
cd yuno-mcp
npm install
npm run build
2. Set Up Your Yuno API Credentials
- Set your Yuno API credentials using environment variables (see config examples below).
3. Add the MCP Server to Cursor
- Open Cursor Settings (
Cmd+Shift+P→ "Cursor Settings"). - Go to the "MCP" section and click "Add new global MCP server".
- Add the following config (replace the path with your actual build output):
{
"mcpServers": {
"yuno-mcp": {
"type": "command",
"command": "npx @yuno-payments/yuno-mcp@latest",
"env": {
"YUNO_ACCOUNT_CODE": "your_account_code",
"YUNO_PUBLIC_API_KEY": "your_public_api_key",
"YUNO_PRIVATE_SECRET_KEY": "your_private_secret_key",
"YUNO_COUNTRY_CODE": "your_country_code",
"YUNO_CURRENCY": "your_currency"
}
}
}
}
4. Add the MCP Server to Claude Desktop
- Open Claude Desktop settings → "Developer" tab → Edit Config.
- Add the following config:
{
"mcpServers": {
"yuno-mcp": {
"command": "npx",
"args": [
"@yuno-payments/yuno-mcp@latest"
],
"env": {
"YUNO_ACCOUNT_CODE": "your_account_code",
"YUNO_PUBLIC_API_KEY": "your_public_api_key",
"YUNO_PRIVATE_SECRET_KEY": "your_private_secret_key",
"YUNO_COUNTRY_CODE": "your_country_code",
"YUNO_CURRENCY": "your_currency"
}
}
}
}
5. Test the Integration
- In Cursor or Claude, select a Markdown file or chat and ask the agent to create a payment, customer, or checkout session using the
yuno-mcptool. - Make sure your environment variables are set correctly.
Required environment variables:
YUNO_ACCOUNT_CODEYUNO_PUBLIC_API_KEYYUNO_PRIVATE_SECRET_KEYYUNO_COUNTRY_CODE(optional)YUNO_CURRENCY(optional)
Support
For issues, bugs, or feature requests, please open an issue in our GitHub repository. For official Yuno support, please visit Yuno's official documentation.
Related Servers
MCP2Lambda
A bridge that enables MCP clients and LLMs to access and execute AWS Lambda functions as tools.
MCP Currency Converter Server
Provides real-time currency conversion and exchange rate data using the Frankfurter API.
Remote MCP Server on Cloudflare
A remote MCP server deployable on Cloudflare Workers with OAuth login support for both local development and remote deployment.
WordPress MCP Server
An MCP server for interacting with WordPress sites via the REST API, allowing you to manage posts, pages, and media.
MCP Nomad Go
A Go-based MCP server for managing HashiCorp Nomad resources, including jobs, deployments, nodes, and cluster operations.
Honeycomb MCP
Interact with Honeycomb observability data, including datasets, SLOs, and triggers.
Alby MCP Server
Control a Lightning wallet using Nostr Wallet Connect (NWC).
Remote MCP Server (Authless)
An authless remote MCP server deployable on Cloudflare Workers.
PayPal by CData
A read-only MCP server for querying live PayPal data, powered by the CData JDBC Driver.
AWS CLI
Generate and execute AWS CLI commands using natural language.