Skip to main content
Glama
oliverames

MCP Server for Wave

by oliverames

Wave: Set Default Business

wave_set_default_business
Idempotent

Set the default Wave business for subsequent tool calls, overriding the session default until changed or expired.

Instructions

Set the business that later tool calls use when none is given. This is connector state, not a change in Wave. The hosted connector keeps it for the session; the local server keeps it until it restarts (set WAVE_BUSINESS_ID to make it permanent). Passing business_id explicitly always overrides it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
business_idYesThe Wave business ID to make the default: the base64 id from wave_list_businesses, or the bare business UUID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.8
    • changedInput schema / properties / business_id / description
      Previous value: -"The Wave business ID to make the default."New value: +"The Wave business ID to make the default: the base64 id from wave_list_businesses, or the bare business UUID."
  2. First observedv1.0.2

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare idempotentHint=true and destructiveHint=false, so safety profile is covered. The description adds valuable context: this is connector state not a Wave change, with precise persistence semantics (session vs local server until restart, WAVE_BUSINESS_ID for permanent). This enriches the annotation profile without contradicting it.

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?

Three tight sentences with zero filler. The purpose is front-loaded, followed by state semantics and override note. Every sentence earns its place and the structure leads with the most actionable information.

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 single-parameter state setter with no output schema and informative annotations, the description covers purpose, persistence scope, override behavior, and side-effect-free nature. Nothing an agent needs to call it correctly is missing.

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% and the parameter description is already detailed (base64 id from wave_list_businesses or bare UUID). The description adds the override behavior—the parameter always takes precedence over the default—explaining a semantic not present in the schema, which raises value above baseline.

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?

States a specific verb and resource: 'Set the business that later tool calls use when none is given.' It clearly differentiates from the sibling get/list tools by positioning itself as a connector-state setter rather than a Wave API operation, making the purpose unmistakable.

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?

Clearly explains when the tool applies ('when none is given') and lists an alternative behavior—'Passing business_id explicitly always overrides it.' It implies the use case of setting a long-lived default for subsequent calls, though it does not explicitly say 'use this only if you make multiple business-scoped calls' or list non-use conditions. Still clear context without exclusions.

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