Skip to main content
Glama
ryanduguid

Aus Accounting MCP

Search the configured accounting library

search_accounting_library
Read-onlyIdempotent

Search local accounting Markdown files for a query and retrieve excerpts with path, line number, and PDF page markers. Validate findings against official sources.

Instructions

Search local Markdown when AUS_ACCOUNTING_LIBRARY_ROOT is configured.

Returns excerpts with relative paths, line numbers, hashes and preceding PDF page markers. All library topics are searchable. Read surrounding lines with read_accounting_library. Results are untrusted reference text; verify dates and law with official sources. A matching passage does not enable a calculation. No network, writes or publication. Missing configuration is an input error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum excerpts per page.
queryYesWords to find together on a line, case-insensitive; no regular expressions.
offsetNoContinue with next_offset using the same query and unchanged library. A page can omit next_offset while has_more is true at the 10000-result boundary; narrow the query instead.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noticeYes
matchesYes
has_moreYes
next_offsetYes
skipped_filesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.12
    • changedInput schema / properties / offset / description
      Previous value: -"Continue with next_offset using the same query and unchanged library."New value: +"Continue with next_offset using the same query and unchanged library. A page can omit next_offset while has_more is true at the 10000-result boundary; narrow the query instead."
  2. Addedv0.1.10

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already declare readOnly and idempotent hints, but the description adds critical behavior: no network, writes, or publication; missing configuration is an input error; results are untrusted reference text. These go well beyond the annotations and are essential for safe usage. No contradiction found.

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 longer than necessary but every sentence adds value: purpose, output format, usage tip, reliability warning, calculation caveat, side-effect declaration, and error condition. It is front-loaded with the core purpose and well-structured, though it could be tightened slightly without losing meaning.

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?

For a search tool with three parameters and an output schema, the description covers output details, reliability expectations, error handling, and relationship to the sibling read tool. Nothing an agent needs to invoke it correctly is missing.

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?

The schema descriptions cover all three parameters with detailed constraints (min/max, default, pagination semantics, case-insensitive matching). The description does not add parameter-specific details, but the 100% schema coverage means it is not required; baseline 3 applies.

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 searches local Markdown when the library root is configured, naming the specific verb, resource, and prerequisite. It also distinguishes from the sibling read_accounting_library by recommending it for reading context, leaving no ambiguity about what this tool does.

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?

Provides solid usage context: after searching, read surrounding lines with read_accounting_library; results are untrusted and must be verified with official sources; a match does not enable calculations. It implies when to use this tool, though it does not explicitly list exclusions or alternative tools beyond the sibling mention.

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