Skip to main content
Glama

Get an Aave DAO proposal

get_governance_proposal
Read-only

Takes no 'version' argument (DAO governance is not per-market; Governance V3 is unrelated to Aave v3/v4 markets). Full detail for one Aave DAO governance proposal: state, author, vote tallies, quorum, timings and the transaction hash of each lifecycle step. 'quorumMet' and 'differentialMet' are the two conditions a proposal must meet to pass. Vote tallies and quorum are both in AAVE, so they compare directly. The long IPFS write-up is omitted unless includeDescription is true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
proposalIdYesProposal id as a decimal string, e.g. '508'. From search_governance_proposals.
includeDescriptionNoInclude the full proposal markdown from IPFS (default false). It runs to many KB; the short description is always returned.

TDQS

A4.4/5.0
Behavior4/5

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

readOnlyHint=true already covers the safety profile, and the description adds useful context beyond it: 'quorumMet' and 'differentialMet' as the two pass conditions, vote tallies and quorum both being in AAVE so they compare directly, and the IPFS write-up being omitted unless includeDescription is true. It does not disclose failure behavior for nonexistent proposal IDs or live IPFS fetch characteristics, but for a read-only getter these are minor.

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?

Four sentences, front-loaded with the most likely error source (the version confusion) before the purpose statement. Nearly every sentence earns its place, but the final IPFS sentence substantially repeats what the includeDescription schema description already states, so it is not perfectly lean.

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

Completeness5/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 return-value burden and meets it: content fields, the two pass conditions, unit consistency, and the optional-description default are all stated. For a low-complexity read-only fetch with two fully documented parameters, nothing an agent needs to call it correctly or interpret the results is missing.

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?

Schema coverage is 100% and both parameters are already well documented (decimal-string format with an example and provenance for proposalId; default and size caveat for includeDescription), so the baseline is 3. The description adds genuine value by warning there is no version parameter, preventing an agent from expecting market-scoped parameters, though it adds no new syntax or format details.

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?

States a specific verb and resource — 'Full detail for one Aave DAO governance proposal' — and enumerates returned fields (state, author, vote tallies, quorum, timings, lifecycle tx hashes). The 'Takes no version argument' note distinguishes it from per-market siblings, and the single-item scope distinguishes it from search_governance_proposals, so an agent can identify it without opening the schema.

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?

Provides clear context: the version-argument warning prevents a realistic misuse (treating DAO governance as per-market), and the schema ties proposalId provenance to search_governance_proposals, implying the search-then-detail workflow. However, it never names alternatives like get_proposal_votes or get_proposal_payloads, so routing among the governance family is largely left to inference.

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