Skip to main content
Glama

accelo_list_milestones

List Accelo job milestones as phases, filtered by job, status, manager, or dates. Retrieve milestone records with pagination and search to track project progress.

Instructions

List milestones from Accelo.

Milestones are phases within a job. Each milestone has a job_id linking to its parent job. To find the company: get milestone → job_id → get job → against_id (company). Use fields="job()" to expand the parent job inline.

Args: filters: Filter dict. Keys: id, standing, ordering, job, parent, manager, rate, object_budget, status, date_modified/created/started/commenced/due/completed_before/after, order_by_asc/desc fields: Additional fields, e.g. "description,manager(),job()" search: Search over title page: Page number (0-indexed) limit: Results per page (max 100)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
fieldsNo
searchNo
filtersNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/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 behavioral burden. It discloses the data-model relationships (milestone→job→company) and the inline-expansion trick, which is useful, but says nothing about return shape, permissions, rate limits, or pagination behavior beyond the parameter names.

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?

Front-loads the identity of the tool before the navigation chain and arguments, with each section earning its place. The relationship walkthrough is slightly tangential to invoking the tool, keeping it just short of a 5.

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 list tool with no output schema and no annotations, the description covers identity, relationships, and all five parameters well. It does not describe the fields a milestone record returns, which is the main remaining gap, but the essential calling information is present.

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, and it does: it enumerates the filter dict keys, shows the fields expansion syntax ('description,manager(),job()'), states search is over title, and adds non-obvious constraints like page being 0-indexed and limit maxing at 100.

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?

States a specific verb and resource ('List milestones from Accelo') and adds genuine domain context — milestones are phases within a job, each with a job_id linking to a parent job. The 'list' verb implicitly distinguishes it from accelo_get_milestone and accelo_count_milestones, which are the natural siblings.

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?

There is no explicit when-to-use guidance or named alternative; the reader must infer it from the verb. The navigation chain ('get milestone → job_id → get job → against_id') and the 'Use fields="job()" to expand' hint are practical how-to tips rather than selection guidance, so usage is only implied.

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

Deploy Server

Other Tools