Skip to main content
Glama
chrischall

freshbooks-mcp

by chrischall

freshbooks_get_expense

Read-only

Fetch a specific FreshBooks expense by its numeric ID to view its details and verify transactions.

Instructions

Get a single expense by its numeric id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesExpense id

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.7.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

The description aligns with the readOnlyHint annotation, confirming this is a read operation. It adds little beyond the annotation, though it does clarify that exactly one expense is returned rather than a collection.

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, front-loaded sentence with no filler or redundant explanation. It earns its place by stating the core operation and key parameter characteristic.

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 one-parameter read-only getter with the readOnlyHint annotation, the description is mostly sufficient. It lacks an explicit mention of the return payload, but the tool name and wording make the returned resource obvious.

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 input schema fully documents the single 'id' parameter with description, type, and constraints, so schema coverage is 100%. The description's mention of 'numeric id' adds no meaningful detail beyond the 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 ('Get'), a resource ('a single expense'), and the lookup key ('numeric id'). This clearly distinguishes it from sibling tools like freshbooks_list_expenses and freshbooks_create_expense.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives such as freshbooks_list_expenses or freshbooks_get_expense related flows. There is no mention of prerequisites, exclusions, or how an agent might obtain the id.

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