get_agent_reputation
Get an agent's reputation score (0-100) with full breakdown by tier, endorsements, uptime, age, and wishes granted.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID |
Get an agent's reputation score (0-100) with full breakdown by tier, endorsements, uptime, age, and wishes granted.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the score range and the breakdown dimensions of the return value, but it omits error behavior, data freshness, permissions, or what happens for unknown agents. This is a useful but limited behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence. It front-loads the action and resource ('Get an agent's reputation score') and then appends the detail about the score range and breakdown. No unnecessary words or restatements.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter read-only tool, the description adequately covers the main purpose and return content. It lists the breakdown categories despite the lack of an output schema. It could be more explicit about return structure or error handling, but given the low complexity, it is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The sole parameter agent_id is already documented in the schema as 'The agent ID' with 100% coverage. The description adds no extra meaning, format requirements, or usage hints beyond the schema, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Get' and clearly identifies the resource as an agent's reputation score with a 0-100 range. It lists distinct breakdown components (tier, endorsements, uptime, age, wishes granted), which sets it apart from siblings like get_agent or get_leaderboard.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to use this tool versus alternatives. It does not name related tools like trust_check or get_agent, provide exclusions, or state conditions under which this tool should be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Several tools overlap in purpose, such as bridge_erc8004_lookup and bridge_erc8004_trust_check, trust_check, get_agent, and get_agent_reputation all returning trust or reputation data. Descriptions help clarify the distinctions, but the similarities could lead an agent to select the wrong tool.
Naming uses a mix of conventions: verb-noun (get_agent, search_agents), noun-first (compliance_report, dns_discovery), and prefix-based groupings (trust_*, bridge_*). While snake_case is consistent, the inconsistent verb/noun ordering and synonyms (lookup, check, verify) make it less predictable.
With 19 tools, the set is slightly heavy but still justified by the platform's broad feature set covering trust checks, reputation, teams, wishes, compliance, and credentials. Some tools could be merged (e.g., bridge_erc8004_lookup and bridge_erc8004_trust_check), but the count is not excessive for the apparent scope.
The tool surface focuses heavily on reading and checking trust data, but lacks obvious lifecycle operations such as updating or deleting agents, creating wishes, or managing endorsements. The presence of create_team without corresponding team management (update/delete) leaves a notable gap.