Skip to main content
Glama

agent-trust-oracle

score_agent

Get an agent's decay-weighted trust score in [0,1] and tier. Unknown agents get a neutral 0.5 prior — no blind trust, no unfair zero.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the neutral prior for unknown agents, but does not explain 'decay-weighted' or mention idempotency, rate limits, or side effects.

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?

Two sentences, no fluff, front-loaded with the key output (score and tier). Every word earns its place.

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?

For a simple scoring tool with an output schema (presumably explaining return values), the description covers the essential behavioral aspect (unknown agent handling). It could mention the decay mechanism briefly, but overall it is complete enough.

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 0% schema coverage, the description minimally adds context for the single parameter 'agent_id' by stating it's for an agent. However, it does not specify format, constraints, or how to obtain the ID. Baseline 3 is appropriate given the low complexity.

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 it retrieves a decay-weighted trust score and tier for an agent, with specific behavior for unknown agents (0.5 prior). This is distinct from sibling tools like 'attest' or 'describe_agent'.

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 explains what the tool does but does not provide guidance on when to use it versus alternatives (e.g., when to prefer this over 'describe_agent' or 'history'). Usage context is implied but not explicit.

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
Disambiguation5/5

Each tool targets a distinct operation: issuing attestations, self-description, history retrieval, outcome recording, score querying, and verification. No overlaps.

Naming Consistency4/5

Tools mostly follow verb_noun pattern (describe_agent, record_outcome, score_agent, verify_attestation), but 'history' is a noun-only exception. Still clear and predictable.

Tool Count5/5

Six tools cover the core trust oracle functionality without bloat. Each tool serves a necessary role in the lifecycle.

Completeness4/5

Covers recording outcomes, querying scores, and managing attestations. Lacks a tool to list agents or modify outcomes, but these are plausible intentional constraints.