Skip to main content
Glama

Asana Search Tasks

asana_search_tasks
Read-onlyIdempotent

Search tasks across a workspace by keyword. Returns matching tasks with ID, name, completion status, and assignee. Requires workspace ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesSearch query text
limitNoNumber of results to return (default 20, max 100)
workspaceNoWorkspace GID (auto-resolved if omitted)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
tasksYesList of matching tasks

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "tasks": {
      +      "description": "List of matching tasks",
      +      "items": {
      +        "properties": {
      +          "assignee": {
      +            "description": "Task assignee",
      +            "properties": {
      +              "name": {
      +                "description": "Assignee name",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          },
      +          "completed": {
      +            "description": "Task completion status",
      +            "type": "boolean"
      +          },
      +          "due_on": {
      +            "description": "Due date in YYYY-MM-DD format",
      +            "type": "string"
      +          },
      +          "gid": {
      +            "description": "Task GID",
      +            "type": "string"
      +          },
      +          "name": {
      +            "description": "Task name",
      +            "type": "string"
      +          },
      +          "permalink_url": {
      +            "description": "Task permalink URL",
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "tasks"
      +  ],
      +  "type": "object"
      +}
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "text": "website redesign"
      +  },
      +  {
      +    "limit": 50,
      +    "text": "bug fix",
      +    "workspace": "1234567890123456"
      +  }
      +]
  3. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, indicating safe read-only behavior. The description adds that it returns specific fields and requires workspace ID, which is useful but not critical given the rich annotations.

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?

Two sentences, front-loaded with the core purpose, no wasted words. Every sentence adds value.

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 simple search operation, the description covers purpose, return fields, and key requirement. With annotations and output schema, it is reasonably complete. Missing details like pagination or error handling are acceptable.

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 parameters are already documented. The description adds minor context (default limit, max) but has a slight inconsistency: description says 'Requires workspace ID' while schema marks workspace as optional. Since baseline is 3, this is adequate.

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 the verb 'Search', resource 'tasks', and scope 'across a workspace'. It specifies the return fields (ID, name, completion status, assignee). This distinguishes it from siblings like asana_list_tasks (which likely lists all tasks) and asana_get_task (single task).

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 states it uses keyword search and requires a workspace ID (though schema says optional). It does not explicitly exclude when not to use it or mention alternatives, but the context is clear for basic search vs. other task operations.

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.