Skip to main content
Glama

Get account abstraction info

fuse_get_account_abstraction_info

Reads ERC-4337 state for a smart account on Fuse: deployment status, EntryPoint nonce, and the account's deposit balance at the EntryPoint. Paymaster eligibility is not evaluated in v0.1.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nonceKeyNoOptional 192-bit nonce key as a decimal or 0x-prefixed hex string (defaults to 0).
smartAccountAddressYesSmart-account (ERC-4337) address — counterfactual or deployed.

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description bears full responsibility for behavioral disclosure. It clearly states this is a read-only operation ('Reads'), which implies no side effects. It also honestly notes a feature gap (paymaster eligibility not evaluated). However, it does not mention error conditions or authorization requirements, but for a simple read tool, this is adequate.

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?

Two sentences, no wasted words. The first sentence immediately states the purpose and outputs. The second sentence clarifies a limitation. Efficient and front-loaded.

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?

Despite no output schema, the description clearly enumerates return values (deployment status, nonce, deposit balance). It also captures a limitation. With only 2 parameters and a simple read operation, the description provides all necessary context for an agent to use the tool correctly.

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 have descriptions. The description adds value by explaining what the tool returns (deployment status, nonce, deposit balance), which helps agents understand the parameter semantics in context. The nonceKey parameter's hex/decimal format is already in the schema, but the description ties it to EntryPoint nonce.

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 specifies a precise verb ('Reads'), a clear resource ('ERC-4337 state for a smart account on Fuse'), and lists the exact data returned (deployment status, nonce, deposit balance). It also distinguishes itself by noting what it does not do (paymaster eligibility not evaluated). This clarity differentiates it from sibling tools like 'fuse_smart_get_info' or 'fuse_get_user_operations'.

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 implies use cases: checking ERC-4337 account state. It provides a clear context for when to use this tool, but does not explicitly mention when not to use it or name alternative tools. The limitation about paymaster eligibility helps set expectations.

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

A3.7/5.0
Disambiguation5/5

All 50 tools have clearly distinct purposes, with descriptive names and descriptions that differentiate even similar concepts like token pricing (fuse_get_token_price, fuse_get_token_price_change, etc.). There is no ambiguity between tools.

Naming Consistency5/5

All tools follow a consistent 'fuse_verb_noun' pattern using snake_case, with groups like fuse_get_*, fuse_send_*, fuse_smart_*, and fuse_notification_*, making them predictable and easy to navigate.

Tool Count4/5

50 tools is on the higher side but appropriate given the breadth of Fuse Network operations (read/write, smart wallet, staking, trading, notifications, ENS, etc.). Each tool contributes to a well-scoped feature set without unnecessary redundancy.

Completeness4/5

The tool set covers a comprehensive range of blockchain interactions on Fuse, including balances, transfers, smart contracts, staking, trading, NFTs, notifications, and ENS. Minor gaps like governance or bridging exist but do not significantly impair common workflows.

Resources