Asana MCP Server

MCP Server for Asana API

Local serverstdioGo

What is the Asana MCP server?

If you want an AI assistant working directly with Asana, the asana mcp server is the bridge. MCP Server for Asana API.

What Asana does

This Model Context Protocol server implementation of Asana allows you to talk to Asana API from MCP Client such as Anthropic's Claude Desktop Application, and many more.

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

  • Returns — List of workspaces
  • Note — If DEFAULT_WORKSPACE_ID is set, this will only return that workspace instead of fetching all workspaces

Installing the asana mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 3 environment variables: ASANA_ACCESS_TOKEN, DEFAULT_WORKSPACE_ID, TASK_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Asana sits in that group, and the shape of its toolset — Returns, Note — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by cristip73, written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the asana mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
ReturnsList of workspaces
NoteIf DEFAULT_WORKSPACE_ID is set, this will only return that workspace instead of fetching all workspaces

How to install the Asana MCP server

{
     "mcpServers": {
       "asana": {
         "command": "npx",
         "args": ["-y", "@cristip73/mcp-server-asana"],
         "env": {
           "ASANA_ACCESS_TOKEN": "your-asana-access-token",
           "DEFAULT_WORKSPACE_ID": "your-default-workspace-id"
         }
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ASANA_ACCESS_TOKENCredential the server authenticates with.Yes
DEFAULT_WORKSPACE_IDConfiguration value read at startup.Optional
TASK_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Asana to Returns.
  • Use Asana to Note.

Frequently asked questions

It connects Asana to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Returns, Note) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Asana directly.