Skip to main content
Glama

import_feedback

Import ERC-8004 Reputation Registry feedback records for an agent. Each item: {value: bool|0..1, at: ISO-8601, source?, weight?, feedback_id?}. Idempotent per feedback_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chain_idYes
feedbackYes
token_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does mention idempotency per feedback_id, a valuable behavioral trait. However, it does not disclose other important behaviors such as whether existing feedback is overwritten or ignored, permissions required, or side effects beyond the import. This is a significant gap for a mutation tool.

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 compact and well-structured. The first sentence states the primary action, the second sentence provides the item format, and the final clause adds the idempotency behavior. Every sentence earns its place, with no redundant information. It is front-loaded with the core purpose.

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 provides core behavioral context (import, item format, idempotency) and the output schema is available, so return values need not be explained. However, it lacks details on parameter semantics for chain_id/token_id and does not mention what happens on duplicate feedback_id. Minor gaps, but overall the description is reasonably complete 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.

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 does clarify the structure of the 'feedback' array items with fields like 'value', 'at', 'source?', 'weight?', 'feedback_id?', which is helpful. However, it does not explain 'chain_id' or 'token_id' beyond implying they identify the agent/registry context. This leaves some parameters under-specified.

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 states a specific action: 'Import ERC-8004 Reputation Registry feedback records for an agent.' It clearly identifies the resource (feedback records in the ERC-8004 registry) and the verb (import). The mention of ERC-8004 distinguishes it from sibling tools like import_registration, which likely handles registrations. The item format and idempotency note further clarify the tool's purpose.

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 provides clear context that this tool is for importing feedback records, and the name 'import_feedback' distinguishes it from siblings like import_registration. However, it does not explicitly state when not to use it or refer to alternative tools. The context is clear enough for an agent to infer its primary use case, but explicit alternatives are absent.

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

Each tool has a distinct role: bind_identity creates binding attestations, export_attestation exports trust-score payloads, verify_attestation checks integrity, and import/list/resolve/score each target different registry operations. No two tools appear to perform the same action.

Naming Consistency5/5

All tools follow a verb_noun pattern with clear verbs (bind, describe, export, import, list, resolve, score, verify). The only minor variation is list_registrations using a plural noun, but this is conventional and does not cause confusion.

Tool Count5/5

With 9 tools, the server covers identity import, listing, resolution, feedback import, scoring, attestation export/verification, binding, and self-description. This is appropriately scoped for a bridge service without excess.

Completeness4/5

The core ERC-8004 workflows (registration, feedback, scoring, attestation) are represented. Minor gaps include no direct listing of feedback records and no delete/removal operation, but these are workaroundable.