Skip to main content
Glama

get_wallet_profile

Read-only

Assess a crypto wallet's risk by reviewing its age, balance, transaction history, top counterparties, recent tokens, activity patterns, and known bad-actor labels.

Instructions

Describe a wallet: age, balance, transaction count, top counterparties, tokens it used recently, activity patterns, and any known bad-actor labels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoChain name or ID: ethereum, base, arbitrum, polygon, or bsc.ethereum
addressYesAn EVM address: 0x followed by 40 hex characters.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainYes
addressYes
sourcesNo
activityNo
findingsNo
data_gapsNoWhat we could not check. Missing data is not proof of safety.
is_contractNo
known_labelNo
native_symbolYes
recent_tokensNo
native_balanceNo
security_flagsNoBad-behaviour labels reported by GoPlus.
first_funded_byNo
transactions_sentNoExact number of transactions this address has sent (its nonce).
top_counterpartiesNo
first_funded_by_labelNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds no additional behavioral context such as data source caveats, potential incompleteness, or external label reliability; openWorldHint covers some of this implicitly, but the description itself contributes nothing beyond the output field list.

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 a single focused sentence that front-loads the core action and then lists concrete output facets. The list is slightly long but every item adds value, and there is no filler or repetition.

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?

The presence of an output schema covers return-value details, and annotations cover safety and open-world assumptions. The main gap is the lack of explicit sibling differentiation, but for a read-only descriptive tool the definition is otherwise complete enough for correct invocation.

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 coverage is 100%, so both parameters are already well-documented in the schema. The description does not add parameter-level detail, which is acceptable but not additive. Baseline 3 is appropriate when the schema already handles parameter semantics.

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 clearly states the verb 'Describe' and the resource 'a wallet', then enumerates the exact output categories (age, balance, transaction count, top counterparties, tokens, activity patterns, bad-actor labels). This clearly distinguishes it from the risk-scoring siblings (score_risk, check_token_risk) which evaluate rather than describe.

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 implies the tool is for retrieving a descriptive wallet profile, but it does not explicitly state when to choose it over alternatives like score_risk or trace_funds. There is no mention of when not to use it or which sibling handles related use cases.

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