Asana MCP Server

Productivityhttp-streamingssev1.0.0
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Asana (@Asana)
Repositorio
https://github.com/Asana/mcp-server
Licencia
Apache-2.0
Versión
1.0.0
Estrellas
760
Última actualización
19 de junio de 2026