Skip to main content
Glama

List tasks

list_tasks
Read-onlyIdempotent

List tasks the user can access. Rich filtering: project_id, sprint (by sprint id), sprint__isnull=true (product backlog), parent_id, is_completed, depth, plus fuzzy search (trigram over title+description) and literal title__icontains / description__icontains. Filter tickets with has_ticket=true (a ticket is a task with a linked ticket submission) and status with status (BACKLOG|TODO|IN_PROGRESS|DONE). "Open tickets" = has_ticket=true + status not DONE. To assign/change status/tag a ticket use the task tools (task_assign_user, partial_update_tasks, add_tag_tasks). Plan-my-day: filter by planned/due dates with expected_stop_datetime__date (due on a day, e.g. today), expected_stop_datetime__gte/__lte (due after/before, for a range like this week), expected_start_datetime__* likewise, and expected_stop_datetime__isnull=false (has a due date). Also filter by is_milestone, priority (exact/gte/lte), tag (exact tag text), and assignee_id (tasks assigned to a user id). Paginated and ordered by board position. Every task carries app_url, a ready-to-use deep link into the ProWoDo web app — give it to the user instead of describing where to click.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds behavioral context: pagination, ordering by board position, and that every task includes an app_url deep link to give to the user. It does not describe response shape or rate limits, but for a read-only list tool this is adequate. No contradictions.

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 long but dense with useful information. It front-loads the core purpose and then logically groups filters (tickets, plan-my-day, assignments, etc.). Every clause contributes value, though it could be slightly more organized with bullet points. Overall, the length is justified by the tool's complexity.

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?

Given the large number of parameters, lack of output schema, and minimal schema descriptions, the description covers major use cases well: ticket filtering, plan-my-day date ranges, milestone/priority/tag/assignee filters, and the helpful app_url deep link. It does not explain all parameters or response structure, but for a list tool this is strong contextual coverage.

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?

The schema has ~40 parameters with almost no descriptions (0% coverage). The description compensates by explaining key filters (project_id, sprint, sprint__isnull, parent_id, is_completed, depth, search, title__icontains, description__icontains, has_ticket, status, date/time filters). It does not cover every parameter (e.g., progress, importance, story_points, assigned_to_me), but it explains the most important ones and the __gte/__lte/__isnull conventions.

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 clearly states 'List tasks the user can access', providing a specific verb and resource. It immediately distinguishes itself from sibling tools like list_projects and list_sprints by noting 'Rich filtering' and detailing the many filter options, making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly names alternative tools for mutations ('To assign/change status/tag a ticket use the task tools (task_assign_user, partial_update_tasks, add_tag_tasks)') and provides concrete use cases with filter suggestions, such as "Open tickets" and "Plan-my-day". This tells the agent when to use this tool versus alternatives.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation4/5

Most tools are clearly scoped to a specific resource and action, but a few near-overlapping pairs (e.g., list_attachments vs list_taskattachments, create_tasktags vs add_tag_tasks) could cause misselection without close reading. Descriptions are detailed enough to resolve most ambiguity.

Naming Consistency4/5

The dominant verb_noun CRUD pattern (create_, list_, retrieve_, update_, partial_update_, destroy_) is consistent and predictable. However, non-standard pluralizations (companys, resumeentrys, taskdependencys) and a handful of irregular names (task_assign_user, move_relate_to_tasks) introduce minor inconsistencies.

Tool Count1/5

With 83 tools, this server is far beyond a well-scoped MCP surface, even for a feature-complete project management suite. The sheer volume will overwhelm agents and make selection inefficient, clearly falling into the extreme-mismatch range.

Completeness5/5

The toolset provides thorough lifecycle coverage across companies, projects, tasks, sprints, attachments, comments, dependencies, tags, reminders, resume entries, tickets, and users. Missing operations like company deletion or task-attachment creation appear intentional and are worked around via existing tools.

Resources