Skip to main content
Glama
blackwaxxx

buildium-mcp

by blackwaxxx

Buildium List Work Orders

buildium_list_work_orders
Read-onlyIdempotent

List work orders (maintenance jobs) from Buildium. Set all_pages to true to retrieve all records for counting or aggregation.

Instructions

List work orders (maintenance jobs).

Set all_pages=true when counting or aggregating.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
fieldsNo
offsetNo
all_pagesNo
exclude_fixturesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, openWorld, and non-destructive behavior. The description adds value by disclosing pagination behavior through the all_pages instruction, which is not visible in the annotations.

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 two short sentences with no filler. The purpose is front-loaded, and the all_pages guidance earns its place as a critical usage note.

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

Completeness3/5

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

The tool has an output schema and safety-bearing annotations, and a default no-argument call is possible. However, with five optional parameters and zero schema-level descriptions, the description leaves fields and exclude_fixtures underspecified for an agent that needs those options.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for explaining parameters. It only addresses all_pages, while fields, limit, offset, and exclude_fixtures remain unexplained beyond their names and defaults.

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 uses a specific verb and resource—"List work orders"—and clarifies the domain term with "maintenance jobs." It is unambiguous about what the tool does, though it does not explicitly contrast with the sibling 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 Guidelines4/5

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

The description gives clear operational guidance: set all_pages=true when counting or aggregating, which prevents incorrect results from default pagination. It does not discuss alternatives or when not to use the tool, but the context is clear for the main use case.

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