Skip to main content
Glama

get_crank_score

Read-onlyIdempotent

A wallet's Crank Score reputation breakdown (FREE read).

Returns total_score, per-activity components (trade / staking / strategy / social / claim), sybil_flagged + penalty_bps, and the score-gated perks it unlocks under gates: fee_discount_bps (additional technology service fee discount), daily_send_limit (higher social-send cap), priority_access, and the gate tier (0-3). Score accrues from on-platform activity; circular funding between wallets is flagged + penalised. Well-formed zeros for an unscored wallet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
caller_idNo
wallet_addressYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds meaningful behavioral context: how the score is accrued (on-platform activity), the penalty for circular funding, and the 'well-formed zeros' response for unscored wallets. This goes beyond mere annotation repetition and helps the agent understand the tool's behavior and output nuances.

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 efficient and well-structured. The first sentence is a clear summary, followed by a compact enumeration of return fields and a note on behavior. No filler or repetition; every sentence adds value. It is front-loaded with the tool's essence and additional details are logically ordered.

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 description covers the return fields extensively, including gates and penalties, and even notes the behavior for unscored wallets. The only gap is the lack of explicit parameter documentation, but since the output schema is present (as indicated by the context signal) and the main parameter is obvious, the description is sufficiently complete for an agent to invoke the tool correctly. It could still benefit from mentioning the caller_id parameter or any possible error conditions, but overall it is near-complete.

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 0%, so the description must compensate. It implicitly makes clear that 'wallet_address' is the key input (by describing a wallet's score), but it does not explicitly describe either parameter. The optional 'caller_id' is not mentioned at all, and there is no guidance on formats or expectations. Given the required parameter is self-explanatory, the description partially compensates, but the lack of explicit parameter documentation prevents a higher score.

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 tool's function: retrieving a wallet's Crank Score reputation breakdown. It specifies the resource (wallet) and the exact output fields (total_score, components, sybil_flagged, gates, etc.), distinguishing it from the many sibling get_* tools by naming the specific 'Crank Score' concept. No ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to use this tool versus alternatives. The description mentions 'FREE read' but does not explain the difference from other score-related tools like get_score or get_my_contribution_score, nor does it specify conditions (e.g., 'use this when you need the full breakdown'). An agent would have to infer usage from the purpose, which is not ideal given the large sibling set.

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

B3.2/5.0
Disambiguation2/5

Multiple tools overlap significantly: close_perp_position vs perp_close, get_leaderboard vs get_score_leaderboard vs get_strategy_leaderboard, get_venue_status vs get_all_venues_status, send_token_social vs bulk_send_social, and get_crank_score vs get_score. Several read-only tools have nearly identical purposes, and the descriptions do not always clarify boundaries.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern (get_balances, create_strategy, set_alert, list_webhooks). However, there are deviations like 'lst_swap', 'jupiter_swap', 'flash_loan', 'sr_backtest', and the use of both 'get_' and 'list_' for reads, plus category prefixes like 'perp_' and 'strategy_' that vary in order. Overall still readable and predictable.

Tool Count1/5

177 tools is an extreme count for any server, far exceeding the 25+ threshold for 'too many'. Even a full DeFi platform does not need this many separate operations; the surface is overwhelming and clearly not well-scoped.

Completeness3/5

The domain (Solana DeFi trading) is covered extensively across swaps, perps, lending, staking, strategies, signals, and support. However, there are notable gaps: no lend_withdraw, no direct way to close a lending position, no spot order cancellation (though aggregator-based swaps may not need it), and a general lack of tiered account management. The huge number of tools makes it hard to identify missing lifecycle steps.

Resources