Skip to main content
Glama

list_families

Retrieve families from a specific Kanka campaign by providing its ID. Use pagination to browse family records for your worldbuilding needs.

Instructions

List families

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
campaignIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.1

TDQS

C2.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'List families' implies a read operation but says nothing about required campaign scoping, pagination, return format, or any side effects. The agent is left without critical behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is only two words long, which is too terse to be considered appropriately concise. It omits essential scoping and parameter context, making it under-specified rather than efficiently structured.

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

Completeness1/5

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

For a tool with two parameters, no annotations, and no output schema, this description is grossly incomplete. The agent cannot correctly infer that campaignId is required, what the page parameter does, or what kind of result to expect. This is inadequate for reliable tool invocation.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no parameter information whatsoever. The required campaignId and optional page parameters are entirely undocumented in the description, so the agent must rely solely on the raw schema with no added meaning or context.

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 ('families'), making the primary action clear. However, it does not differentiate this tool from the many sibling list_* tools beyond the resource name, and it omits the campaign scoping implied by the required campaignId parameter.

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 get_family or other list_* tools. The description leaves the agent to infer that this tool is for fetching multiple families rather than a single one, with no explicit context or exclusions.

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