Skip to main content
Glama

Triage a paste of log lines

triage_log
Read-onlyIdempotent

Paste log lines — combined, JSON, uniq -c, <ip> <ua> or bare user-agents, auto-detected — for per-line crawler, operator, purpose and cost of blocking, a rollup by operator and category, and every line whose address contradicts its claim. Log text, never a URL. Example: log='66.249.66.1 Googlebot/2.1' returns Googlebot, Google, search, verified.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
logYesThe log text, up to 5000 lines. Mixed formats are fine.
limitNoMax rows, default 200.
detailNoPer-line table, or aggregates only.

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds valuable behavioral context beyond that: auto-detection of several log formats, the per-line classification output, rollups, and the detail that lines whose address contradicts their claim are surfaced. This goes well beyond the annotation baseline.

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 dense but every sentence earns its place: input forms, output components, a hard constraint, and a concrete example. It is front-loaded with the core behavior and wastes no words.

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?

There is no output schema, so the description carries the burden of explaining return values, and it does so reasonably well by naming per-line fields, rollup dimensions, contradiction detection, and a sample result. It does not describe exact response shapes or failure modes, but the core call behavior is adequately covered.

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 the baseline is 3. The description adds meaningful semantic information not in the schema: the accepted log formats (combined, JSON, uniq -c, IP+UA, bare UA), the 'log text, never a URL' constraint, and an example mapping a line to Googlebot/Google/search/verified. That clearly enriches the log parameter.

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 states a specific action and resource: paste log lines and get per-line crawler, operator, purpose, and blocking-cost analysis, plus rollups and contradiction detection. It is clearly not a generic API, but it does not explicitly distinguish itself from the sibling tools, so it stops short of a 5.

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?

It gives useful input guidance: accepted formats are auto-detected, and URLs are explicitly excluded. However, it never says when to prefer this tool over siblings like robots_from_log or summarize_by_operator; usage context is implied rather than stated.

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.6/5.0
Disambiguation4/5

Most tools have clearly separate deliverables: triage_log is the full per-line report with rollups, summarize_by_operator is aggregate-only, find_impersonators is contradiction-only, and the two config generators produce different artifacts. Some overlap exists because triage_log can also surface rollups and address contradictions, but the descriptions make the boundaries clear.

Naming Consistency3/5

The names mix conventions: verb+object (find_impersonators, triage_log), verb+preposition+object (summarize_by_operator), and output+from_log (robots_from_log, waf_ruleset_from_log). The from_log suffix is a useful clue, but the set lacks a single predictable naming pattern.

Tool Count5/5

Five tools is well-scoped for a cawler log triage server: one full analyzer, two focused analyzers, and two artifact generators. Each tool has a clear deliverable and none feels like filler.

Completeness4/5

The workflow from raw log input to analysis, aggregation, Impoersonation detection, and defensive config generation is covered. A minor gap is the absence of a direct prefix-allowlist generator, since the WAF guidance points at allowlisting published prefixes as the real fix for impersonation.

Resources