Skip to main content
Glama
ruizemanuel

ripio-community-mcp

by ruizemanuel

Ripio prices

ripio_get_prices
Read-onlyIdempotent

Get buy/sell rates from Ripio app and exchange bid/ask prices for one or more assets, comparing app and Trade book data.

Instructions

Current prices for one or more assets: the Ripio app buy/sell rates (with spread) and, when the pair exists, the Ripio Trade book (bid, ask, last, 24h change and volume), so app and exchange prices can be compared.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
quoteNoDefault "ARS".
assetsYesTickers, e.g. ["USDT", "BTC"].

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
as_ofYes
quoteYes
pricesYes
warningsYes
not_foundYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only, idempotent, and non-destructive behavior, so the description need not repeat them. It adds useful conditional behavior ('when the pair exists') and specifies the exact price fields returned, going beyond the structured annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The single sentence packs in the resource, the two data domains, the spread, and the comparison purpose without redundancy. It is front-loaded with the core purpose and each clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description fully explains what data is returned and under what condition, and an output schema exists to cover return structure. Annotations handle safety and idempotence, so nothing critical is missing for a simple read-only price tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with assets and quote already fully documented. The description reinforces that assets are tickers and that availability depends on the pair, but does not add new parameter-level meaning beyond what the schema provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb-resource pair ('current prices') and enumerates exact data points (buy/sell rates, spread, trade book fields). It clearly distinguishes this from sibling tools like ripio_get_portfolio or ripio_list_open_orders by focusing solely on market pricing data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The purpose implies it should be used when current prices are needed, and the phrase 'so app and exchange prices can be compared' describes intent but not explicit selection criteria. It does not name alternatives or state when not to use it, such as when estimating a trade versus checking live prices.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.