Skip to main content
Glama

Get XRP Price

get_xrp_price
Read-onlyIdempotent

Convert XRP bounty amounts to USD and GBP with live prices to decide if a job is worth accepting.

Instructions

Get the current live XRP price in USD and GBP.

Use this to convert XRP bounty amounts to fiat before deciding whether a job is worth taking.

Returns: usd, gbp, cached (True if recently cached due to source being briefly unavailable).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, non-destructive behavior. The description adds value by explaining the return fields and the cached flag semantics, revealing that the price may be recently cached if the source was briefly unavailable.

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?

Three sentences with no filler: the main action, the practical use case, and the return format. It is compact, front-loaded, and every sentence 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?

Given zero parameters, existing output schema, and safety annotations, the description is sufficient for an agent to invoke the tool correctly. It explains what the tool returns and when to use it, though it does not elaborate on external dependencies or data freshness beyond the cached flag.

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

Parameters4/5

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

There are no parameters and schema coverage is 100%, so there is nothing to add for parameters. The description still helpfully documents the outputs (usd, gbp, cached), which supports correct interpretation of results.

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 states a specific verb and resource: get the current live XRP price in USD and GBP. The XRP-specific focus and the bounty-conversion use case make it easy to distinguish from sibling tools like get_rlusd_quote or get_dex_quote without opening their schemas.

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

Usage Guidelines4/5

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

The description clearly explains when to use the tool: 'Use this to convert XRP bounty amounts to fiat before deciding whether a job is worth taking.' It gives strong contextual guidance but does not explicitly mention alternatives or when-not-to-use cases.

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