Skip to main content
Glama
timothybroome

Fastidious MCP Server

get_collection

Retrieve a specific collection by ID from Fastidious AI. Optionally include its child notes and collections for a complete view.

Instructions

Get a collection by ID, optionally including its children

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID of the collection to retrieve
includeChildrenNoWhether to include child notes/collections

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It implies a read operation via "Get" and notes the optional child expansion, but says nothing about error behavior for missing IDs, permission needs, or the depth/shape of the returned children.

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?

A single front-loaded sentence with no filler; the core action comes first and the optional behavior is attached compactly. Every word earns its place.

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 two-parameter read tool with full schema coverage this is minimally viable, but with no output schema the description should say more about what a collection and its children look like, or what happens on a bad ID.

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 both parameters are already documented in the schema; the description only restates them without adding format, depth, or performance meaning for includeChildren. Baseline 3 applies.

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?

States a specific verb and resource ("Get a collection by ID"), and the "by ID" qualifier cleanly separates it from list_collections. It does not name or contrast with any sibling explicitly, so it stops short of 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 Guidelines3/5

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

The phrase "optionally including its children" hints at when the extra parameter is warranted, but there is no explicit statement of when to use this tool versus list_collections or get_note, and no prerequisites or exclusions.

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