Skip to main content
Glama
chrischall

freshbooks-mcp

by chrischall

freshbooks_list_services

Read-only

Browse billable work types available for projects and time entries in FreshBooks. Use this to identify services for assigning to new projects or logging time.

Instructions

List services (the billable work types available to projects and time entries).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
per_pageNo

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.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the agent knows this is a safe read operation. The description adds the domain context that services are billable work types, which is useful. However, it doesn't disclose pagination behavior, default page size, or whether the list is ordered, but the read-only safety is covered by 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 a single, compact sentence that front-loads the verb and resource, then adds a clarifying parenthetical. Every word earns its place; there is no fluff or repetition.

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?

For a simple read-only list tool with two optional pagination parameters and no output schema, the description is mostly adequate. The main gap is that it doesn't mention pagination behavior or defaults, but the parameter names and annotations cover the essential safety and scope. An agent can likely call this tool correctly with the current information.

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 0%, so the description carries the burden for parameter meaning. The description does not explain 'page' or 'per_page' beyond what the schema types imply. However, the parameter names are self-explanatory for pagination, and the schema provides constraints (exclusiveMinimum, maximum for per_page). The description adds no semantic value beyond the schema.

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 states a specific verb ('List') and resource ('services'), and clarifies what services are ('billable work types available to projects and time entries'). This distinguishes it from sibling list tools like freshbooks_list_invoices or freshbooks_list_clients, though it doesn't explicitly name a sibling alternative.

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 description implies usage context by defining services as billable work types for projects and time entries, which helps an agent know when this tool is relevant. However, it provides no explicit guidance on when to use this tool versus alternatives, no exclusions, and no mention of pagination usage.

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