Skip to main content
Glama

Plumbline — a trust layer for LLM answers

Payroll Anomalies (Verified)

find_payroll_anomalies
Read-only

Surface payroll and deduction anomalies in the latest snapshot. NOTE: internal drafting is disabled on this deployment. If your client supports MCP sampling, this tool asks YOUR model to draft in the same call (verified server-side); otherwise it returns an explicit refusal, and you should use ask_prepare then ask_submit_draft to draft with your own model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
answerYes
claimsNo
refusedNo
coverageNo
questionNo
recoveryNo
answer_idNo
groundingNo
confidenceNo
data_as_ofNo
drafted_byNo
facts_usedNo
unverifiedNo
attributionNo
disclosuresNo
result_setsNo
snapshot_idNo
snapshot_nameNo
stage_timingsNo
correlation_idNo
figure_originsNo
reconciliationNo
refusal_reasonNo
composed_promptNo
drafted_by_sourceNo
evidence_documentsNo
model_observationsNo
suggested_questionsNo
unverified_disclaimerNo
model_reported_evidenceNo

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses critical behavior: internal drafting is disabled, the tool asks the model to draft in the same call when sampling is supported, and it returns a refusal otherwise. This is exactly the kind of behavioral context that prevents wasted calls and confusion.

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 purpose statement is front-loaded and the critical usage caveat follows cleanly. Every sentence serves a distinct function: what the tool does, the sampling condition, the failure behavior, and the fallback workflow. No filler or redundancy.

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

Completeness5/5

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

Given zero parameters, an existing output schema, and annotations declaring read-only behavior, the description covers the main non-obvious context: when the tool will refuse and how to complete the workflow using sibling tools. Nothing essential is missing for correct invocation.

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?

The tool has no schema parameters, so there are no parameter semantics to clarify. With 100% schema coverage and zero parameters, the description needs to add nothing for parameter understanding; the baseline is appropriate.

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 uses a specific verb ('surface') and clearly identifies the resource ('payroll and deduction anomalies') and scope ('in the latest snapshot'). This separates it from sibling tools such as query_fact, run_sql, and compare_departments.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool and what to do when it cannot be used: if the client supports MCP sampling, use this tool; otherwise it will return a refusal, and the agent should use ask_prepare then ask_submit_draft. This is concrete, actionable usage guidance with a clear alternative path.

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

A4.4/5.0
Disambiguation4/5

Most tools occupy clearly different lifecycle slots: ask_prepare/ask_submit_draft/ask_result form the verification flow, run_sql/run_code/query_fact are distinct execution paths, and cross_check/trust_finalize handle trust outcomes. The main ambiguity is that the ready-made domain tools (search_employee, compare_departments, etc.) resemble a generic ask_prepare flow, but their descriptions explicitly route around this, so the boundary is recoverable.

Naming Consistency5/5

All tool names use lowercase snake_case and are almost uniformly verb-first: ask_, get_, run_, search_, compare_, query_, summarize_, find_, and trust_. Even compound names like ask_submit_draft and get_answer_queries follow the same predictable action-oriented pattern.

Tool Count4/5

Eighteen tools is at the upper end of what is comfortable for an agent, but each maps to a distinct surface area: question preparation, submission, raw query, execution, verification, audit, transparency, and documentation. A few convenience tools could arguably be merged into the generic ask_prepare flow, which keeps this from being a perfect score.

Completeness5/5

The trust-layer lifecycle is fully covered: ask_prepare → draft generation → ask_submit_draft → ask_result/trust_finalize, plus cross_check for corroboration and get_answer_queries/get_evidence_document for audit. There are no obvious dead ends for the intended verified-answer workflow; intentionally restricted browsing and listing are security features rather than missing operations.

Resources