Skip to main content
Glama
cyber-sami

trello-guardrails-mcp

by cyber-sami

Get Lists

get_lists

Retrieve all open lists from a named Trello board. Specify the board name to get a clear view of its active lists.

Instructions

Get all open lists on a Trello board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/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 transparently discloses that the operation retrieves only open lists and is scoped to a board, and the 'Get' verb implies a read-only behavior. It omits details like ordering or result shape, but those are partially covered by the presence of an output schema.

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?

One compact, front-loaded sentence that conveys the verb, resource, scope, and board context without any filler or redundancy.

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 simple read-only tool with one required parameter and an output schema, the description provides essential call context. Minor gaps include lack of explicit guidance on board_name format and what happens when no open lists exist, but overall the definition is sufficient for correct invocation.

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

Parameters4/5

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

The schema only defines board_name as a string with no description. The tool description compensates by clarifying that the parameter represents the Trello board whose open lists should be fetched. It does not specify whether a name or ID is expected, but the single self-describing parameter makes the meaning reasonably clear.

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 clearly identifies the action ('Get'), the resource ('open lists'), and the scope ('on a Trello board'). This distinguishes it from sibling tools like get_boards, get_cards, and list-mutation tools.

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

Usage Guidelines4/5

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

The description clearly states when to use the tool: when the agent needs open lists for a particular board. It also implicitly excludes archived lists via 'open lists', though it does not explicitly name sibling alternatives or state when not to use them.

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