Yugo Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Yugo Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server for the Yugo Payments API. Auto-generates tools from the OpenAPI spec — new API endpoints are supported with zero code changes.
npm installcp .env.example .env
# Edit .env and set your YUGO_API_KEYnpm run build
npm startOr for development:
npm run dev| Variable | Required | Default | Description |
|---|---|---|---|
YUGO_API_KEY | Yes | — | Your Yugo API key (contact [email protected]) |
YUGO_BASE_URL | No | https://sandbox-api.yugo.finance/api/v2 | API base URL. Set to https://api.yugo.finance/api/v2 for production |
TRANSPORT | No | stdio | Transport type: stdio or sse |
PORT | No | 3000 | HTTP port (only used with SSE transport) |
Auto-generated from the OpenAPI spec. Currently includes:
| Tool | Description |
|---|---|
create_payin | Create a new payin — accept funds from a payer |
get_payin_by_id | Get payin details by ID |
get_payins | List payins (paginated, filterable by reference) |
create_payout | Create a new payout — send funds to a recipient |
get_payout_by_id | Get payout details by ID |
get_payouts | List payouts (paginated, filterable by reference) |
get_banks | List available banks for open banking |
get_accounts | List merchant accounts and balances |
| URI | Description |
|---|---|
yugo://spec | Full OpenAPI 3.1 specification |
yugo://rails | Supported payment methods, settlement methods, and currencies |
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"yugo": {
"command": "node",
"args": ["/path/to/yugo-mcp-server/dist/index.js"],
"env": {
"YUGO_API_KEY": "your_api_key_here"
}
}
}
}Add to your Cursor MCP settings:
{
"mcpServers": {
"yugo": {
"command": "node",
"args": ["/path/to/yugo-mcp-server/dist/index.js"],
"env": {
"YUGO_API_KEY": "your_api_key_here"
}
}
}
}TRANSPORT=sse PORT=3000 YUGO_API_KEY=your_key node dist/index.jsConnect your MCP client to http://localhost:3000/sse.
To pick up new API endpoints:
curl -sL https://docs.yugo.finance/openapi/payments.yaml -o openapi/payments.yaml
npm run buildRestart the server and new tools will be available automatically.
This server is the MCP Server interface layer in the Yugo System Architecture. It runs as a separate process that calls the Yugo REST API.
AI Agent → MCP Server → Yugo REST API → Payment Core → Settlement RailsMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.