Community MCP server for Asana work management platform. Agents can create and update tasks, manage projects and sections, search across workspaces, handle task dependencies, and track project status. Ideal for teams using Asana for project coordination, task automation, and workflow management.
npx -y mcp-server-asana
{
"mcpServers": {
"asana": {
"env": {
"ASANA_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"mcp-server-asana"
],
"command": "npx"
}
}
}Create a new Asana task
{
"type": "object",
"required": [
"project_id",
"name"
],
"properties": {
"name": {
"type": "string"
},
"due_on": {
"type": "string"
},
"project_id": {
"type": "string"
}
}
}// Input
{
"name": "Review API doc",
"due_on": "2026-04-01",
"project_id": "123"
}// Output
{
"gid": "456",
"name": "Review API doc"
}Search Asana tasks
{
"type": "object",
"required": [
"workspace_id",
"query"
],
"properties": {
"query": {
"type": "string"
},
"workspace_id": {
"type": "string"
}
}
}// Input
{
"query": "deployment",
"workspace_id": "987"
}// Output
{
"tasks": [
{
"gid": "111",
"name": "Deploy v2.0",
"completed": false
}
]
}Community MCP server for Asana work management platform. Agents can create and update tasks, manage projects and sections, search across workspaces, handle task dependencies, and track project status. Ideal for teams using Asana for project coordination, task automation, and workflow management.
Asana provides 2 tools including create_task, search_tasks.
Asana offers a free tier with 500 calls per month. For higher usage, paid plans start at €0/month.
You can install Asana using the following command: npx -y mcp-server-asana. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Asana is listed under the Productivity category in the AgentForge MCP registry.
Asana has a current uptime of 99.8% with an average response time of 220ms.
To connect Asana, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Asana's tools via the Model Context Protocol.