Asana MCP Server

Productivityhttp-streamingssev1.0.0
代码仓库

Official Asana MCP server that connects AI tools to the Asana Work Graph. Enables agents to create and update tasks, manage projects and sections, add comments, search work, and summarize project status via a remote OAuth-secured endpoint.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "asana": {
      "url": "https://github.com/Asana/mcp-server",
      "env": {
        "ASANA_ACCESS_TOKEN": "<YOUR_ASANA_ACCESS_TOKEN>"
      }
    }
  }
}

工具 (3)

create_task

Create a task in a project with assignee, due date, and notes.

{
  "type": "object",
  "required": [
    "project_id",
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Task name"
    },
    "notes": {
      "type": "string",
      "description": "Task description"
    },
    "due_on": {
      "type": "string",
      "description": "Due date in YYYY-MM-DD format"
    },
    "assignee": {
      "type": "string",
      "description": "Assignee user GID or email"
    },
    "project_id": {
      "type": "string",
      "description": "Asana project GID"
    }
  }
}

search_tasks

Search for tasks across a workspace using text and filters.

{
  "type": "object",
  "required": [
    "workspace_id",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search text"
    },
    "completed": {
      "type": "boolean",
      "description": "Filter by completion status"
    },
    "workspace_id": {
      "type": "string",
      "description": "Asana workspace GID"
    }
  }
}

update_task

Update fields on an existing task such as status, assignee, or due date.

{
  "type": "object",
  "required": [
    "task_id"
  ],
  "properties": {
    "notes": {
      "type": "string",
      "description": "Updated task notes"
    },
    "task_id": {
      "type": "string",
      "description": "Task GID"
    },
    "completed": {
      "type": "boolean",
      "description": "Mark task complete or incomplete"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Asana (@Asana)
代码仓库
https://github.com/Asana/mcp-server
许可证
Apache-2.0
版本
1.0.0
星标
760
最后更新
2026年6月19日