Skip to main content
Glama

Get the sGHO savings vault

get_sgho_vault
Read-only

v3 only, Ethereum only. Savings GHO (sGHO) is an ERC-4626 vault that pays a target rate on deposited GHO. Returns the vault's targetRatePct, totalAssets, supplyCap and paused flag; pass 'user' to add that wallet's shares, their GHO value, its GHO wallet balance, and the maxDeposit / maxWithdraw the contract allows right now. Two things this rate is not: it is set by governance rather than by utilisation, so it does not move with borrowing demand, and it is not a lending position - sGHO earns yield but is not Aave collateral and cannot be borrowed against. Deposits and withdrawals are instant, with no cooldown.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userNoOptional wallet address (0x, 40 hex) to include its position. Omit the argument entirely for vault state only.
versionNoOptional, and only 'v3': this tool exists on v3 only.

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description reinforces the read-only nature by listing returned fields. It adds useful behavioral context beyond annotations: the rate is governance-set rather than utilisation-based, sGHO is not a lending position/collateral, and deposits/withdrawals are instant with no cooldown. There is no contradiction with annotations.

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

Conciseness4/5

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

The description is front-loaded with scope ('v3 only, Ethereum only') and core return values. The longer explanatory section about what the rate is not is dense but earns its place by preventing conceptual misuse of the data. It is not overly verbose for the amount of semantic context it provides.

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?

With no output schema, the description carries the burden of explaining return values and does so substantially: it enumerates the vault fields and the user-specific fields. It also provides product context (governance-set rate, non-collateral nature, instant liquidity) that helps an agent interpret results. Minor gaps like unit details or error behavior are acceptable given the read-only nature.

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 description coverage is 100%, so the baseline applies. The description adds some extra meaning for the 'user' parameter—clarifying it returns shares, GHO value, wallet balance, and maxDeposit/maxWithdraw—but the schema already conveys the core semantics ('to include its position'). The version parameter is fully documented in the schema, so no further compensation is needed.

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 names a specific resource (sGHO savings vault), states the verb ('Returns'), and enumerates the exact returned fields (targetRatePct, totalAssets, supplyCap, paused flag). It also scopes the tool to 'v3 only, Ethereum only', which makes its purpose unambiguous and distinguishes it from unrelated vault-like tools.

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 description clearly implies when to use the tool (when vault state or a user's sGHO position is needed) and gives parameter-level guidance ('pass user to add...'). However, it never names an alternative tool or states when NOT to use this one, despite siblings like get_sgho_preview and prepare_sgho_action existing. Usage context is present but exclusions are absent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

The tool set is organized into clear read/prepare/action families, and cross-references like get_user_positions vs get_user_summary or get_markets vs get_reserve_details keep purposes distinct. A couple of generic names—prepare_action vs prepare_order, preview_action vs prepare_action—could cause misselection, but the descriptions explicitly separate them.

Naming Consistency4/5

Names overwhelmingly follow a verb_noun snake_case pattern: get_* for reads, prepare_* for transaction builders, plus cancel_order and submit_signed_order. The pattern is consistent overall, though a few generic exceptions like get_started, get_aave_guide, and preview_action break the strict resource-noun convention.

Tool Count2/5

With 40 tools, the set is well past the 25+ threshold and feels heavy even though the domain is broad. Most tools are distinct and justified, but an agent must navigate a very large list, and the server could reasonably be split into protocol, governance, and swap/order surfaces.

Completeness4/5

The surface covers v3/v4 reads, positions, health factors, simulations, transaction building, collateral, eMode, liquidation, rewards, sGHO, swaps/orders, and governance proposal reads, with clear sequencing between preview, prepare, and submit. Minor gaps exist—governance has no voting transaction and stkGHO balance/cooldown state is not readable—but they do not block the core Aave workflows.

Resources