Skip to main content
Glama

Get Full Agent Details

get_agent_details
Read-onlyIdempotent

Get full details for a specific AI agent including all category scores it qualifies for (model_family, tokenized, service, developer). Returns identity, raw signals, sub-scores, evidence-ready status. Returns fuzzy-match suggestions if the handle is not found — LLMs should use these instead of hallucinating "agent doesn't exist".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
handleYesAgent handle slug (e.g. "qwen", "crewai", "aixbt"). Alphanumeric/hyphen/underscore, max 64 chars.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bioNo
nameNo
tierNo
errorNoSet when agent not found.
handleNo
scoresNoPer-category scoring data keyed by category slug.
identityNoExternal identifiers (hf_author, lmarena_keys, paper_ids, virtuals_id, agentverse_id, github_full_name).
verifiedNo
archetypeNo
profile_urlNo
suggestionsNoFuzzy-match suggestions when not found.
primary_categoryNo
erc8004_registeredNo
secondary_categoriesNo

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, covering the safety profile. The description adds valuable behavioral context beyond these: it discloses the fuzzy-match suggestion behavior on miss, and it describes the nature of the returned data (identity, raw signals, sub-scores, evidence-ready status). This is exactly the kind of context that helps an agent anticipate results. No contradiction.

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 three concise sentences. It front-loads the purpose, then details the return contents, then gives crucial miss-handling guidance. Every sentence earns its place and there is no fluff or redundancy.

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?

The description covers the core purpose, the specific category scores, the return components, and the edge-case behavior when the handle is not found. The output schema exists and likely documents exact field structures, so the description need not repeat return format details. For a single-parameter read-only tool, this is complete and actionable.

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?

With a single parameter and 100% schema description coverage, the schema already thoroughly documents the 'handle' including format and examples. The description adds no additional parameter semantics beyond what the schema provides, so the baseline of 3 is appropriate.

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 uses a specific verb ('Get') and resource ('full details for a specific AI agent'), enumerates the included category scores (model_family, tokenized, service, developer), and lists specific return components (identity, raw signals, sub-scores, evidence-ready status). This clearly distinguishes it from sibling tools like get_agent_trust or get_agent_changes, which target narrower aspects.

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 gives clear context: use this tool to retrieve comprehensive agent details. It also provides an explicit behavioral instruction for not-found handles: 'LLMs should use these instead of hallucinating "agent doesn't exist"'. However, it does not explicitly name alternative sibling tools or state when to prefer one over another, so it misses the top tier for usage guidelines.

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.2/5.0
Disambiguation5/5

Each tool serves a clearly distinct purpose: comparison, discovery, details, history, trust, rankings, ecosystem summaries, methodology, movers, categories, search, and verification. There is no meaningful overlap that could cause an agent to select the wrong tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., compare_agents, find_agents, get_agent_trust, verify_counterparty). The pattern is uniform and predictable across the entire set.

Tool Count5/5

14 tools is within the ideal 3-15 range and each tool maps to a distinct query type for the AgentCrush domain. The scope feels well-covered without unnecessary bloat.

Completeness4/5

The surface covers discovery, detail, history, trust, comparison, ranking, and ecosystem-level analytics. The only notable gap is a lack of a direct 'list all agents' tool; the full ranked list is provided via external URL rather than a first-class tool, but this is a minor limitation given find_agents and search_agents cover discovery.