Skip to main content
Glama
abelsr

Plane MCP Server

by abelsr

List Projects

list_projects

List all projects in the Plane workspace with pagination and sorting. Retrieve project names, identifiers, and metadata to manage workflows or sync data.

Instructions

List projects in the workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination cursor from a previous response's `next_cursor`.
expandNoComma-separated related fields to expand.
order_byNoField to sort by; prefix with '-' for descending order.
per_pageNoItems per page (1-100, default 20).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 behavioral burden. It only restates the listing action and does not disclose pagination, default page size, expand behavior, ordering, or whether results are a page of projects. The schema hints at pagination, but the description adds no 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.

Conciseness4/5

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

The description is a single efficient sentence with no filler and is appropriately front-loaded. It is slightly redundant with the title, but it adds the 'in the workspace' scope.

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 list operation with a full output schema and self-documenting parameters, this is minimally viable. However, it lacks guidance on when to use this tool versus get_project and does not mention the paginated nature of results in prose.

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 the parameters (cursor, expand, order_by, per_page) are already documented in the input schema. The description adds no parameter-level detail, so it stays at the baseline.

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 action and resource: 'List projects in the workspace.' It is clear enough to distinguish from get_project/create_project/update_project, though it does not explicitly name or contrast any sibling tool.

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?

There is no guidance on when to choose list_projects over get_project or the other sibling tools. The context is implied by the word 'List', but no exclusions or alternatives are given.

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