Skip to main content
Glama
cyber-sami

trello-guardrails-mcp

by cyber-sami

Create List

create_list

Creates a new list on a Trello board using the board name and list name. Solves the need to add lists without guessing board identifiers.

Instructions

Create a new list on a Trello board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_nameYes
board_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/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 of behavioral disclosure. It only says 'Create a new list' and does not mention side effects, duplicate handling, permission requirements, or failure behavior. For a mutating tool, this is a notable transparency gap.

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, well-structured sentence with no filler. It front-loads the action and resource, and every word contributes to understanding what the tool does.

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?

The tool is simple with only two required string parameters and no nested objects, and an output schema exists, so return-value documentation is unnecessary. However, the lack of behavioral context such as duplicate policy or error cases leaves room for improvement.

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

Parameters2/5

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

The input schema has 0% description coverage and only lists parameter names (board_name, list_name). The description echoes these concepts with 'list' and 'Trello board' but adds no format, constraints, or guidance beyond what the parameter names already imply.

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 clearly states the action ('Create'), the resource ('a new list'), and the context ('on a Trello board'). It is distinct from siblings like create_card without needing explicit contrast, though it does not name or differentiate itself from related list operations.

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 use when the agent wants to create a list on a board, but it gives no explicit when-to-use/when-not-to-use guidance and does not reference alternatives such as get_lists or archive_list. Usage context is inferable but not stated.

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