Yugo MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | HTTP port (only used with SSE transport) | 3000 |
| TRANSPORT | No | Transport type: stdio or sse | stdio |
| YUGO_API_KEY | Yes | Your Yugo API key (contact support@yugo.finance) | |
| YUGO_BASE_URL | No | API base URL. Set to https://api.yugo.finance/api/v2 for production | https://sandbox-api.yugo.finance/api/v2 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_payinsA | List Payins — Retrieve a paginated list of all Payins for the merchant — [GET /payins] |
| create_payinA | Create Payin — Create a new Payin resource - accepting funds from a Payer — [POST /payins] |
| get_payin_by_idA | Get Payin — Retrieve details of a specific Payin by its unique identifier — [GET /payins/{id}] |
| get_payoutsA | List Payouts — Retrieve a paginated list of all Payouts for the merchant — [GET /payouts] |
| create_payoutA | Create Payout — Create a new Payout resource - sending funds to a Recipient — [POST /payouts] |
| get_payout_by_idA | Get Payout — Retrieve details of a specific Payout by its unique identifier — [GET /payouts/{id}] |
| get_banksA | List Banks — Retrieve a paginated list of banks available for open banking payments — [GET /banks] |
| get_accountsA | List Accounts — Retrieve a paginated list of accounts with their balances — [GET /accounts] |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Yugo OpenAPI Specification | The full OpenAPI 3.1 specification for the Yugo Payments API. Inspect to see all available endpoints, schemas, and parameters. |
| Supported Payment Rails & Currencies | Reference data for available payment methods, settlement methods, and supported currencies. |
TDQS
Scored across 8 tools
Each tool targets a distinct resource (payin, payout, bank, account) and action (create, list, get). The only potential confusion between create_payin and create_payout is resolved by the resource name in each.
All tools follow a consistent verb_noun pattern, using 'create_' for creation, 'get_' for retrieval, plural nouns for list operations, and '_by_id' for single item details. This makes the naming predictable and unambiguous.
Eight tools adequately cover the core payment operations (create and query payins/payouts) along with supporting resources (banks, accounts). This is well-scoped for a payments server without unnecessary bloat.
The tool surface covers creation and retrieval for payins and payouts, plus listing banks and accounts. While there is no cancel or update operation, these are not essential for a payment flow; a cancel for payouts could be a minor addition but the current set is functionally sufficient.