Skip to main content
Glama
naumanpathan

FathomBridge

by naumanpathan

list_meetings

Retrieve a filtered list of Fathom meetings by date, team, and pagination to find specific meetings for review or processing.

Instructions

List your Fathom meetings with optional date, team, and pagination filters

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of meetings to return (1-100, default 10)
cursorNoPagination cursor from previous response
team_idNoFilter meetings by team ID
to_dateNoFilter meetings to this date (ISO 8601: 2026-12-31)
from_dateNoFilter meetings from this date (ISO 8601: 2026-01-01)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description must carry the transparency burden. It discloses the scope ('your' meetings) and hints at pagination via 'pagination filters', but doesn't state that the operation is read-only, nor describe the response shape or pagination behavior such as cursor usage. For a simple listing tool the description does some work but leaves key behavioral details implicit.

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 one sentence that front-loads the action and resource, then lists filter categories with no filler. Every word contributes meaning and it is immediately parsable.

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 five-parameter list tool with no output schema and no annotations, the description covers the basics (what and filters) but lacks return-value expectations, pagination details, and any relation to sibling tools. It is adequate, but an agent would benefit from knowing the response includes a cursor or how list_meetings differs from search_meetings.

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%, so each parameter (limit, cursor, team_id, to_date, from_date) is already documented. The description groupes these into 'date, team, and pagination filters' but adds no meaning beyond the schema, so the baseline of 3 is appropriate.

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 clear action ('List'), the resource ('your Fathom meetngs'), and the filtering options ('date, team, and pagination filters'). It describes what the tool does unambiguously, but doesn't explicitly differentiate it from sibling search_meetings, so it earns a 4 rather than a 5.

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?

There is no guidance on when to choose this tool over alternatives like search_meetings. The text says only that filters are available, which implies context but does not state any exclusion or alternative. An agent is left to infer the trade-offs between listing and searching.

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