Skip to main content
Glama

list_project_estimate_points

Retrieve all valid estimate points for a project to obtain their UUIDs for work item updates. After fetching the estimate ID, map display labels like 'S', 'M', 'L' to the corresponding point IDs.

Instructions

List all valid estimate points for a project.

Use this to discover the available estimate point UUIDs before calling update_work_item with an estimate_point value. Each EstimatePoint has an id (UUID to pass to update_work_item) and a value (display label such as "1", "2", "3", "5", "8" or "XS", "S", "M", "L", "XL").

Workflow: 1. Call get_project_estimate to get the estimate_id 2. Call list_project_estimate_points with that estimate_id 3. Pick the EstimatePoint whose value matches the user's intent 4. Pass that EstimatePoint.id to update_work_item(estimate_point=...)

Args: project_id: UUID of the project estimate_id: UUID of the estimate (from get_project_estimate)

Returns: List of EstimatePoint objects, each with id and value fields

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes
estimate_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that this is a read/list operation with no side effects, explains the id vs value relationship, and notes a dependency on get_project_estimate. However, it does not cover error conditions, authentication, or rate limits, preventing a perfect score.

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 well-structured with a summary, use-case paragraph, numbered workflow, args, and returns. Each section is purposeful and there is no redundant information, making it both thorough and efficient.

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

Completeness5/5

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

The description is complete for a list tool: it covers the purpose, the workflow it belongs to, the parameters, and the return structure. The output schema exists, but the description still adds valuable context about how the fields map to update_work_item, making the tool self-sufficient.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. The 'Args' section clearly explains project_id as the project UUID and estimate_id as coming from get_project_estimate. It also clarifies that the returned id is what to pass to update_work_item, adding meaning beyond the bare schema.

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 opens with 'List all valid estimate points for a project', which is a specific verb and resource. It distinguishes from sibling tools like create_project_estimate_points and update_project_estimate_point by focusing on the read-only discovery of UUIDs for use with update_work_item.

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 explicitly states 'Use this to discover the available estimate point UUIDs before calling update_work_item' and provides a numbered workflow with get_project_estimate as a prerequisite. This gives clear context, but it does not explicitly mention when not to use this tool or name alternative tools that should not be used for this purpose.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/leigangzhang/plane-mcp-server-adapter'

If you have feedback or need assistance with the MCP directory API, please join our Discord server