Skip to main content
Glama

accelo_list_tasks

Retrieve and filter Accelo tasks by assignee, manager, status, job, or milestone to track jobs, issues, and project work.

Instructions

List tasks from Accelo.

Tasks are 'against' a job, milestone, or issue. To find the company:

  • against_type="job": get job → against_id (company)

  • against_type="milestone": get milestone → job_id → job → company

  • against_type="issue": get issue → resolve to company (see issues) Use child_of_job filter to find all tasks under a job (including via milestones).

Args: filters: Filter dict. Keys: id, assignee, manager, task_status, standing, against_type, against_id, custom_id, child_of_job, rate_id, date_created/started/due/completed/modified_before/after, order_by_asc/desc fields: Additional fields, e.g. "description,assignee(),manager()" search: Search over description, 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.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and mostly does: it discloses the parent-relationship resolution chain, the filter set, the max page size of 100, and 0-indexed paging. It stops short of describing the return shape or rate-limit/auth behavior, which would matter for an unannotated list tool.

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 one-line purpose, then the hierarchy guidance, then the Args list — a logical order. The hierarchy bullets add real value but are slightly verbose relative to a simple list call.

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 5-parameter list tool with no output schema and no annotations, the description covers parameters well and explains how tasks relate to jobs/milestones/issues. It omits return-value shape and any pagination/rate-limit caveats beyond the limit cap, which is the main remaining gap.

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

Parameters4/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 largely does: it enumerates the filter keys (id, assignee, against_type, date_*_before/after, order_by_*, etc.), shows a fields example ('description,assignee(),manager()'), defines search scope (description, title), notes page is 0-indexed, and caps limit at 100. It stops short of explaining each filter key's semantics, but the coverage is well above baseline.

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 tasks from Accelo') and distinguishes itself from siblings like accelo_get_task and accelo_count_tasks by being the enumeration operation. The added hierarchy explanation ('Tasks are against a job, milestone, or issue') further pins down what kind of records this returns.

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?

Gives concrete context on when the against_type/against_id filters matter and explicitly recommends 'child_of_job' to gather all tasks under a job, including via milestones. It does not, however, explicitly state exclusions or point to count_tasks/get_task as alternatives, leaving some inference.

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