Skip to main content
Glama

Server Details

Cloudflare Workers MCP server: agent-trace-auditor

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
lazymac2x/agent-trace-auditor-api
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.4/5 across 3 of 3 tools scored. Lowest: 2.8/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: full audit, trace comparison, and fast verdict. There is no ambiguity in their roles.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (audit_trace, diff_traces, quick_verdict), making them predictable.

Tool Count4/5

With only 3 tools, the set covers the core functionality well. It feels slightly thin but is reasonable for a focused audit server.

Completeness4/5

The tools cover full auditing, comparison, and quick checks. Minor gaps exist (e.g., no tool to list or retrieve a single trace), but the main workflows are supported.

Available Tools

3 tools
audit_traceAInspect

Full audit of an agent execution trace. Detects infinite loops, duplicate calls, tool errors, cost overruns, schema violations, and latency bottlenecks. Returns verdict (pass/review/block), score 0-100, and detailed findings.

ParametersJSON Schema
NameRequiredDescriptionDefault
traceYesAgent execution steps. Each step: {tool, input, output, model, ts, latency_ms, error}
budget_usdNoCost cap in USD (default 5.0)
tool_schemasNoPer-tool required field schemas for input validation
Behavior4/5

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

No annotations exist, so description carries full burden. It discloses the tool analyzes traces, detects issues, and returns verdict/score/findings. It does not mention side effects or state changes, but as a read-only analysis tool, this is adequate.

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: first defines purpose, second enumerates detections and outputs. No superfluous text, front-loaded with key information.

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 purpose, inputs (trace), and outputs (verdict/score/findings) sufficiently for a tool with no output schema. Could detail the output structure more, but current level is adequate given complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value by specifying the default for budget_usd and clarifying that tool_schemas are per-tool field schemas, which is not obvious from the property name alone.

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 performs a 'full audit' of an agent execution trace, listing specific detections (infinite loops, etc.) and return types. This distinguishes it from siblings diff_traces (comparison) and quick_verdict (fast judgment).

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 implies use for comprehensive analysis but does not explicitly state when to use or avoid this tool versus alternatives. No exclusion criteria or when-not-to-use guidance provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

diff_tracesCInspect

Compare two agent traces to detect regressions. Returns score delta, cost delta, added/removed tools, new/resolved issue types.

ParametersJSON Schema
NameRequiredDescriptionDefault
trace_aYesBaseline (previous) trace
trace_bYesNew trace to compare against baseline
budget_usdNo
Behavior2/5

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

No annotations are provided, so the description must bear the burden of behavioral disclosure. It mentions the tool returns score delta, cost delta, etc., but does not state whether the tool mutates data, requires specific permissions, has rate limits, or any side effects. The lack of any behavioral context beyond the output is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that efficiently communicates the purpose and outputs. It front-loads the key action and avoids unnecessary details. Minor improvement could be structuring into two sentences for clarity, but it is not verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is moderately complex (comparing traces) and has no output schema. The description partially explains return values but lacks details on the format or interpretation of score delta, cost delta, etc. Additionally, no usage context or prerequisites are given. The description covers the basics but leaves gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 67% (2 of 3 parameters have descriptions). The description adds value by explaining the roles of trace_a and trace_b (baseline vs new), but it does not mention the budget_usd parameter, leaving it undocumented in both the schema and description. The description does not compensate for the missing parameter explanation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: comparing two agent traces to detect regressions. It lists the return values. However, it does not explicitly differentiate from sibling tools like audit_trace or quick_verdict, though the verb 'compare' and 'regressions' imply a distinct use case.

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?

The description provides no guidance on when to use this tool versus alternatives, nor any prerequisites or when-not-to-use scenarios. It only states what it does, leaving the agent to infer usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

quick_verdictBInspect

Fast pass/review/block verdict with score and issue counts. Use in CI gates.

ParametersJSON Schema
NameRequiredDescriptionDefault
traceYesAgent execution steps
budget_usdNo
Behavior2/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 mentions 'fast' and the output includes a 'score and issue counts', but it does not disclose side effects, authorization requirements, or whether the tool is read-only or destructive. This is insufficient for a tool with no annotations.

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 minimal—two short sentences with no redundancy. It front-loads the purpose and use case, wasting no words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 2 parameters, no output schema, and no annotations. The description does not explain the return value format, score range, how 'budget_usd' affects the verdict, or any other behavioral details. This is incomplete for a tool used in CI gates where reliability is critical.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 50% (the 'trace' parameter has a description, but 'budget_usd' does not). The tool description adds no additional meaning to either parameter, failing to compensate for the missing schema documentation.

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 provides a 'fast pass/review/block verdict with score and issue counts'. The verb 'pass/review/block' and resource 'verdict' are specific, and the sibling tools are about auditing and diffing, making this tool distinct.

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 explicitly says 'Use in CI gates', giving a clear context for when to use the tool. However, it does not specify when not to use it or compare directly to sibling tools like 'audit_trace' or 'diff_traces'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.