Skip to main content
Glama

getOffers

Retrieve open DEX offers for any Stellar account by providing its account ID. Set an optional limit to control the number of results returned.

Instructions

Get open DEX offers for a Stellar account

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of offers to return (1-50)
accountIdYesStellar account ID (G... address)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior3/5

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

There are no annotations, so the description carries the transparency burden. It adds behavioral context by restricting results to 'open' offers rather than all offer history, but it does not describe pagination, ordering, error conditions, or explicitly confirm that the operation has no side effects beyond the verb 'Get'.

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 description is a single, front-loaded sentence with no filler or redundancy. It names the operation and the scope in eight words, so every part 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?

For a simple read tool with one required parameter and full schema coverage, the description gives enough information for an agent to select and invoke it. An output schema or a note about response shape would improve completeness, but the core resource and scope are clear.

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?

Both parameters are already fully described in the input schema, with 100% schema description coverage. The description does not need to add parameter details; it simply aligns with the accountId parameter by mentioning 'a Stellar account'.

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 the specific verb 'Get' and names the resource 'open DEX offers' scoped to a Stellar account. It clearly communicates what is returned and is enough to distinguish it from sibling tools like getOrderbook or getTransactions.

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?

No explicit when-to-use or when-not-to-use guidance is given, and no alternative tool is named. The phrase 'for a Stellar account' implies this is the account-level offers tool, but an agent is left to infer the exact fit from the name and sibling list.

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