Skip to main content
Glama
oliverames

MCP Server for Wave

by oliverames

Wave: List Sales Taxes

wave_list_sales_taxes
Read-onlyIdempotent

List sales taxes for a Wave business, showing current rate and rate history. Filter by page, archived status, or modified timestamps to retrieve the tax records you need.

Instructions

List sales taxes, with their current rate and rate history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number for offset pagination.
fetch_allNoWalk every page instead of returning just one. Slower, but complete.
page_sizeNoRecords per page (1-200).
business_idNoBusiness to operate on: the base64 id from wave_list_businesses (a bare business UUID is also accepted). Defaults to the business set by wave_set_default_business. When calls may be minutes apart, pass it on every call.
is_archivedNoFilter to archived (true) or active (false) taxes.
modified_afterNoISO 8601 timestamp; only taxes changed after it.
modified_beforeNoISO 8601 timestamp; only taxes changed before it.
response_formatNoOutput format: "markdown" for a compact human-readable summary, "json" for the complete record.markdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.8
    • changedInput schema / properties / business_id / description
      Previous value: -"Business to operate on. Defaults to the session business set by wave_set_default_business."New value: +"Business to operate on: the base64 id from wave_list_businesses (a bare business UUID is also accepted). Defaults to the business set by wave_set_default_business. When calls may be minutes apart, pass it on every call."
  2. First observedv1.0.2

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already disclose readOnlyHint, idempotentHint, and destructiveHint=false, so the description does not need to restate them. It adds a small output-content hint ('current rate and rate history') but nothing about paging, filtering scope, or response behavior beyond that.

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 a single 12-word sentence with no filler. The verb and resource are front-loaded, and the rate-history detail is relevant and non-redundant.

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 read-only list operation with rich schema descriptions and safety annotations, the description is nearly sufficient and names the key output content. A small gap is that, with no output schema present, it could explicitly mention the markdown/json response formats, though response_format documentation partially covers this.

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?

Schema description coverage is 100%, with each of the eight parameters already detailed. The tool description adds no parameter-level meaning, so it meets the baseline for a fully covered schema.

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 states a specific verb ('List') and resource ('sales taxes'), and adds the distinctive detail that results include current rate and rate history. This clearly distinguishes it from the sibling single-record tool wave_get_sales_tax and from other list tools.

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 intended use is implied by the plural 'List' and the existence of wave_get_sales_tax, but there is no explicit when-to-use guidance, no mention of when to choose this over the singular getter, and no discussion of pagination or fetch_all behavior.

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