Skip to main content
Glama
duytnb26
by duytnb26

@duytnb79/asana-mcp

A local MCP server for Asana that uses an Asana personal access token (PAT).

It runs over stdio and calls the standard Asana REST API at https://app.asana.com/api/1.0. It is separate from Asana's hosted MCP server at https://mcp.asana.com/v2/mcp, which requires a registered MCP app and OAuth.

Requirements

  • Node.js 20+

  • An Asana personal access token

  • Access to the Asana workspaces, projects, and tasks you want to use

Create a PAT in the Asana developer console and treat it like a password. The server can only access data and perform actions allowed for the Asana user who owns the token.

Related MCP server: Asana MCP Server

Installation

Local clone

npm install
npm run build
cp .env.example .env
node dist/index.js

Published package

After this package is published, it can be run with:

npx -y @duytnb79/asana-mcp

Or installed globally:

npm install -g @duytnb79/asana-mcp
asana-mcp

Configuration

Create a .env file or provide environment variables through your MCP client:

ASANA_ACCESS_TOKEN="your_asana_personal_access_token"
ASANA_TIMEOUT_MS="10000"
ASANA_MAX_PAGE_SIZE="100"

Required:

  • ASANA_ACCESS_TOKEN

Optional:

  • ASANA_TIMEOUT_MS — request timeout in milliseconds; defaults to 10000

  • ASANA_MAX_PAGE_SIZE — maximum page size exposed by list/search tools; defaults to 100 and must be between 1 and 100

The server automatically loads .env when running locally.

MCP client configuration

Local build

{
  "mcpServers": {
    "asana": {
      "command": "node",
      "args": [
        "/Users/genkisystem/Desktop/asana-mcp-server/dist/index.js"
      ],
      "env": {
        "ASANA_ACCESS_TOKEN": "your_asana_personal_access_token"
      }
    }
  }
}

Alternatively, run through npm from the project directory:

{
  "mcpServers": {
    "asana": {
      "command": "npm",
      "args": ["start"],
      "cwd": "/Users/genkisystem/Desktop/asana-mcp-server",
      "env": {
        "ASANA_ACCESS_TOKEN": "your_asana_personal_access_token"
      }
    }
  }
}

Published package

{
  "mcpServers": {
    "asana": {
      "command": "npx",
      "args": ["-y", "@duytnb79/asana-mcp"],
      "env": {
        "ASANA_ACCESS_TOKEN": "your_asana_personal_access_token"
      }
    }
  }
}

Available tools

Read tools

  • list_projects

    • Lists projects in a workspace.

    • Supports archived, limit, offset, and opt_fields.

  • list_tasks

    • Lists tasks in a project in project priority order.

    • Supports completed_since, limit, offset, and opt_fields.

  • get_task

    • Gets one task by GID.

  • search_tasks

    • Searches a workspace by assignee, completion state, modified time, project, or text.

    • Asana search is eventually consistent and may lag recent writes by 10–60 seconds.

    • The search endpoint does not support normal Asana offset pagination and returns at most 100 items.

  • list_sections

    • Lists sections in a project.

    • Supports limit, offset, and opt_fields.

Write tools

  • create_task

    • Creates a task or subtask.

    • Requires at least one of workspace, projects, or parent.

  • update_task

    • Updates fields on an existing task.

  • add_comment

    • Adds a plain-text comment to a task.

Write tools make immediate changes in Asana. Configure your MCP client to require approval for these tools if you want a human confirmation step.

Pagination

Asana list endpoints return an opaque next_page.offset. The MCP response exposes it as meta.next_offset.

Pass that value back as offset to retrieve the next page. Only use offsets returned by Asana; they can expire when underlying data changes.

Input/output fields

Asana returns compact objects by default. Use opt_fields to request additional properties, for example:

{
  "project_gid": "12345",
  "limit": 50,
  "opt_fields": [
    "name",
    "completed",
    "assignee.name",
    "due_on",
    "permalink_url"
  ]
}

Keep opt_fields focused. Very broad or deeply nested responses are more expensive and may be rate-limited.

Rate limits and errors

  • Asana returns HTTP 429 when a token is rate-limited.

  • The server reports the Retry-After value when Asana provides it, but does not automatically retry write requests because retries could duplicate creations or comments.

  • Authentication, permission, validation, not-found, timeout, and server errors are converted into readable MCP errors.

  • The PAT is sent only in the Authorization: Bearer header and is never placed in request URLs.

Security

  • Never commit .env or a PAT.

  • Prefer a dedicated PAT with the minimum user permissions needed for this integration.

  • Rotate the PAT if it is exposed.

  • Tool calls run with the permissions of the token owner.

  • This server intentionally exposes specific Asana operations rather than a generic HTTP passthrough tool.

Development

npm run dev
npm run typecheck
npm run build
npm start

Available Tools

8 tools
add_commentAdd commentB

Add a plain-text comment to an Asana task. This operation writes to Asana.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesPlain-text comment to add to the task.
task_gidYesTask GID.
opt_fieldsNoAdditional story fields to return.

TDQS

B3.1/5.0
Behavior2/5

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

The description discloses that the operation writes to Asana, which is useful for a mutation tool, but with no annotations, it fails to elaborate on permissions, whether comments are appended, or if the operation is reversible. This is a significant transparency gap for a write operation.

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 two short sentences with no filler. Every word contributes to the core meaning, making it highly efficient and appropriately front-loaded.

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

Completeness3/5

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

The tool is simple, but the description does not mention return values or how opt_fields affects the response. With no output schema and no annotations, the agent may be left uncertain about the outcome format. However, the core purpose is sufficiently covered for an add operation.

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?

The input schema already provides full documentation for all three parameters (100% coverage), so the description adds minimal value. The mention of 'plain-text' is redundant with the schema's own description of the 'text' parameter, keeping this at the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Add a plain-text comment') and target ('Asana task'), using a specific verb and resource. It distinguishes from siblings like create_task and update_task, though it doesn't explicitly name alternatives, so it falls short of a 5.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios, exclusions, or when a different tool (e.g., update_task) might be more appropriate, leaving the agent without decision-making context.

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

create_taskCreate taskC

Create an Asana task. This operation writes to Asana.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesTask name.
tagsNo
likedNo
notesNoPlain-text task description.
due_atNo
due_onNo
parentNoParent task GID when creating a subtask.
assigneeNoUser GID, email, 'me', or null to leave unassigned.
projectsNoProject GIDs to add the new task to.
start_atNo
start_onNo
completedNo
followersNo
workspaceNoWorkspace GID. Required unless projects or parent identifies the workspace.
opt_fieldsNoAdditional fields to return for the created task.
custom_fieldsNo
approval_statusNo
resource_subtypeNo

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits. It only notes 'This operation writes to Asana,' which is already implied by 'Create,' and omits details about permissions, rate limits, or response behavior. Significant gaps remain.

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 very brief and front-loaded with the core purpose. However, the second sentence 'This operation writes to Asana' is redundant and does not add value, slightly reducing conciseness.

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

Completeness1/5

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

Given the tool's 18 parameters, nested objects, no annotations, and no output schema, this description is severely under-specified. It fails to mention required parameters, return structure, or behavioral nuances, making it inadequate for reliable tool invocation.

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

Parameters1/5

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

Schema coverage is only 39%, leaving many parameters like tags, liked, followers, and custom_fields undocumented. The tool description adds no parameter explanations, failing to compensate for the low coverage and leaving the agent without sufficient guidance.

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 'Create an Asana task,' which clearly specifies the verb and resource. This distinguishes it from siblings like list_tasks, update_task, and get_task. The purpose is unambiguous.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as update_task or search_tasks. It does not mention prerequisites or typical use cases, leaving the agent without context for tool selection.

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

get_taskGet taskB

Get details for one Asana task.

ParametersJSON Schema
NameRequiredDescriptionDefault
gidYesTask GID.
opt_fieldsNoAdditional Asana task fields to return.

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only restates the purpose and fails to mention that this is a read-only operation, what fields are returned, how opt_fields affects the response, or any edge cases/errors. This leaves significant behavioral uncertainty.

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 a single concise sentence with no filler, front-loading the core purpose. It is appropriately sized for the simple operation it describes, earning maximum conciseness.

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

Completeness3/5

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

The tool is simple (2 params, no output schema, no annotations), and the description is minimally adequate. However, it does not explain what 'details' include or whether the response is a full task object. Since no output schema exists, the description should compensate by describing the return shape, which it does not.

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?

The input schema already provides descriptions for both parameters (gid and opt_fields) with 100% coverage. The description adds no additional parameter semantics, so the baseline of 3 is appropriate; the schema does the heavy lifting.

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 uses a specific verb 'Get' with a clear resource ('details for one Asana task'), distinguishing it from siblings like list_tasks (multiple tasks) and update_task (modification). It is unambiguous and directly states the tool's function.

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

Usage Guidelines2/5

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

No guidance is provided on when to use get_task versus alternatives like list_tasks or search_tasks. The description merely implies 'one task' but does not state prerequisites, exclusions, or scenarios where this tool is preferred.

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

list_projectsList projectsA

List Asana projects in a workspace with offset pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoResults per page, from 1 to 100.
offsetNoOffset returned by a previous list_projects call.
archivedNoReturn only archived or active projects.
opt_fieldsNoAdditional Asana project fields to return.
workspace_gidYesWorkspace or organization GID.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses a read-only nature (via 'list') and offset pagination, but does not mention default archived behavior, response format, or rate limits, leaving some ambiguity.

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?

A single, concise sentence that front-loads the verb and resource, with no wasteful words. It is perfectly scoped for the tool's simplicity.

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?

The schema fully documents parameters, and the description is adequate for a straightforward list operation. However, without an output schema, it would benefit from mentioning default return fields or pagination behavior.

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% for all five parameters. The description adds no extra parameter meaning beyond restating workspace and offset pagination, which are already documented in the 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?

Description states the exact verb (List), resource (Asana projects), scope (in a workspace), and method (offset pagination). It clearly distinguishes from siblings like list_tasks and list_sections.

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?

The description implies usage for listing projects in a workspace but provides no explicit alternatives, exclusions, or when-not-to-use guidance. The context is clear but minimal.

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

list_sectionsList sectionsA

List sections in an Asana project with offset pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoResults per page, from 1 to 100.
offsetNoOffset returned by a previous list_sections call.
opt_fieldsNoAdditional Asana section fields to return.
project_gidYesProject GID.

TDQS

A3.9/5.0
Behavior3/5

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

The description highlights offset pagination, a behavioral detail beyond the tool's name. However, with no annotations provided, the description carries the full burden for behavioral transparency. It does not explicitly state that the operation is read-only or describe error cases, auth requirements, or response behavior—leaving some gaps.

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 a single, front-loaded sentence with no wasted words. It states the operation, the resource scope, and a key behavior (offset pagination) in a concise and well-structured manner.

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

Completeness3/5

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

The tool has 4 parameters, no annotations, and no output schema. The description adequately identifies the operation and pagination but does not describe the return format, default fields, or how pagination responses are structured. While it is sufficient for a simple list operation, it leaves some contextual gaps for an agent needing to parse responses.

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 the baseline is 3. The description adds the concept of 'offset pagination,' which reinforces the purpose of the offset parameter, but this is minimal and largely redundant with the schema's own parameter descriptions (e.g., 'Offset returned by a previous list_sections call').

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 tool's purpose: 'List sections in an Asana project with offset pagination.' It uses a specific verb ('List'), a specific resource ('sections in an Asana project'), and uniquely distinguishes from sibling tools like list_tasks and list_projects, which cover different resources.

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 provides clear context for when to use the tool: it lists sections within a specific Asana project. Although it does not explicitly mention exclusions or alternatives, the sibling tool names (get_task, list_tasks, etc.) confirm there is no other section-listing tool, making the usage context clear.

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

list_tasksList tasksA

List tasks in an Asana project in project priority order.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoResults per page, from 1 to 100.
offsetNoOffset returned by a previous list_tasks call.
opt_fieldsNoAdditional Asana task fields to return.
project_gidYesProject GID.
completed_sinceNoReturn incomplete tasks and tasks completed since this ISO timestamp; use 'now' for incomplete tasks only.

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses ordering ('project priority order') and scope ('in an Asana project'), but it omits key behavioral traits such as pagination via limit/offset, the default inclusion of completed tasks, and the response shape. These gaps are significant for a tool with no annotation safety hints.

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 a single, well-structured sentence that front-loads the action and resource. Every word adds value, with no redundant or filler content.

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

Completeness3/5

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

Given 5 parameters, no output schema, and no annotations, the description covers the core purpose but does not mention pagination, filtering via completed_since, or the default behavior for completed tasks. The schema compensates for parameter details, but the overall description could be more complete for an agent to understand the full behavior.

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?

The input schema provides descriptions for all 5 parameters (100% coverage), so the baseline is 3. The tool description adds no additional parameter semantics beyond what the schema already documents.

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 action ('List tasks'), the resource ('in an Asana project'), and a specific behavior ('in project priority order'). This distinguishes it from sibling tools like list_projects, list_sections, and search_tasks.

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 provides clear context that this tool is for listing tasks within a specific project, which implies its primary use. However, it does not explicitly mention when to use alternatives such as search_tasks for filtered searches or get_task for a single task, leaving some ambiguity regarding exclusions.

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

search_tasksSearch tasksB

Search tasks in an Asana workspace. Search indexing is eventually consistent and may lag writes by 10-60 seconds.

ParametersJSON Schema
NameRequiredDescriptionDefault
textNoSearch task names and descriptions.
limitNoMaximum search results, from 1 to 100.
projectNoOne project GID or a list of project GIDs.
sort_byNo
assigneeNoOne assignee identifier or a list of assignee identifiers.
completedNo
opt_fieldsNoAdditional Asana task fields to return.
workspace_gidYesWorkspace or organization GID.
modified_sinceNoOnly tasks modified after this ISO timestamp.
sort_ascendingNo

TDQS

B3.4/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 burden. It does disclose a meaningful behavioral nuance—eventual consistency and indexing delay—which is useful. However, it omits other relevant behaviors such as pagination, rate limits, or whether empty text returns all tasks, so transparency is only partially addressed.

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 extremely concise: two sentences with no redundant wording. The main purpose is front-loaded, and the behavioral caveat follows naturally. Every word earns its place.

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

Completeness2/5

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

For a search tool with 10 parameters and no output schema, the description is incomplete. It does not mention return values, default behavior, or how results are ordered/paginated. The eventual consistency note is helpful but does not compensate for the lack of operational detail.

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 70%, below the high threshold, so the description should compensate for undocumented parameters. It does not add any parameter-level detail. However, most parameters have schema descriptions, so the description's lack of param info is not critical; it neither helps nor harms, leading to a baseline score.

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 a specific action ('Search tasks') with a resource and scope ('in an Asana workspace'). This distinguishes it from sibling tools like list_tasks, which imply listing rather than querying, and get_task, which targets a 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 Guidelines2/5

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

No guidance is given on when to use search_tasks versus alternatives like list_tasks. The description implies its purpose but does not mention alternatives or exclusions, leaving the agent guessing about the appropriate context.

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

update_taskUpdate taskC

Update fields on an Asana task. This operation writes to Asana.

ParametersJSON Schema
NameRequiredDescriptionDefault
gidYesTask GID.
nameNo
likedNo
notesNoPlain-text task description; use an empty string to clear it.
due_atNo
due_onNo
assigneeNoUser GID, email, 'me', or null to unassign.
start_atNo
start_onNo
completedNo
opt_fieldsNoAdditional fields to return for the updated task.
custom_fieldsNo
approval_statusNo
resource_subtypeNo

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states 'This operation writes to Asana,' which is useful but minimal. It does not disclose whether updates are partial or full-replacement, permission requirements, side effects on related data, or what the return value contains. For a mutation tool with complex fields, this is insufficient.

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 extremely concise (two sentences) and front-loaded with the essential action. Every word earns its place, and there is no redundancy or filler. It is appropriately brief for a tool whose details are largely in the schema, though it could be expanded slightly without losing conciseness.

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

Completeness1/5

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

Given the tool's complexity (14 parameters, nested objects, no output schema, no annotations), the description is grossly inadequate. It does not explain return values, side effects, partial update behavior, or any prerequisites. This is a complex mutation tool that needs substantially more context for an agent to use it safely and correctly.

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

Parameters1/5

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

Schema description coverage is only 29%, and the description does nothing to compensate. It simply says 'Update fields' without explaining any of the 14 parameters, their meaning, or how they interact. The description adds no value beyond the schema's sparse field descriptions, leaving most parameters opaque.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Update fields on an Asana task') and identifies the resource (Asana task), and adds the important context that it writes to Asana, distinguishing it from read-only tools like get_task or list_tasks. It could be more specific about updating existing tasks versus creating, but the core purpose is unambiguous.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like create_task, get_task, or search_tasks. It does not mention prerequisites, typical use cases, or exclusions, leaving the agent to infer usage from the tool name alone.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv0.1.0
    • First observedadd_comment
    • First observedcreate_task
    • First observedget_task
    • First observedlist_projects
    • First observedlist_sections
    • First observedlist_tasks
    • First observedsearch_tasks
    • First observedupdate_task

TDQS

A3.5/5.0

Scored across 8 tools

Disambiguation5/5

Each tool targets a distinct resource and action: single task retrieval, task listing, project listing, section listing, commenting, creating, updating, and searching. Even list_tasks and search_tasks are clearly differentiated by scope (project vs. workspace).

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., get_task, list_projects, add_comment, create_task). No mixed conventions or vague verbs.

Tool Count5/5

With 8 tools, the set is well-scoped for an Asana integration, covering tasks, projects, sections, and comments without unnecessary bloat. Each tool serves a clear purpose.

Completeness4/5

The core task lifecycle is covered with get, list, create, update, and search, but missing a delete_task operation leaves a notable gap. Sections and projects are only listable, but that may be acceptable for the server's scope.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    An MCP (Multi-Agent Conversation Protocol) server that enables interacting with the Asana API through natural language commands for task management, project organization, and team collaboration.
    -
  • A
    license
    B
    quality
    C
    maintenance
    A local MCP server that lets you interact with Asana using a personal access token, providing tools to list projects and tasks, search tasks, create and update tasks, and add comments via the Asana REST API.
    8
    19 npm
    MIT