Skip to main content
Glama
abelsr

Plane MCP Server

by abelsr

List Cycles

list_cycles

Retrieve a project's cycles (sprints) with optional status filter and pagination to track planning, current, and completed iterations.

Instructions

List a project's cycles (sprints).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination cursor from a previous response's `next_cursor`.
per_pageNoItems per page (1-100).
cycle_viewNoFilter by status, e.g. "current", "upcoming", "completed", "draft".
project_idYesProject UUID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, but 'List' clearly signals a safe read operation. It does not disclose pagination behavior or filtering semantics beyond what the input schema already states, so it adds only modest 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.

Conciseness5/5

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

The description is one short, well-scoped sentence that front-loads the core action and adds the clarifying parenthetical 'sprints'. No words are wasted.

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 list operation with full schema descriptions and an output schema, the description is nearly complete. It lacks only usage guidance and richer behavioral notes, but those are minor given the schema's clarity.

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%, and each parameter already has a meaningful description. The tool description adds minimal parameter-level insight, so the baseline score of 3 is appropriate.

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 uses a specific verb and resource ('List a project's cycles') and clarifies the domain term by glossing cycles as sprints. It is immediately clear what the tool does, and the resource is distinct from the sibling tools.

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?

The description provides no guidance on when to use this tool versus alternatives such as list_states or list_modules. It only states the basic action, leaving the agent to infer appropriate usage from context.

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