Skip to content
VS Code

Asana MCP Server for VS Code

io.github.jtalk22/asana-mcp-server

Change Asana without opening Asana — custom fields, sections, start dates, rich notes, bulk. PAT.

client:VS Code transport:stdio runtime:npm

Install Asana MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asana-pat",
      "description": "ASANA_PAT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asana-workspace-gid",
      "description": "ASANA_WORKSPACE_GID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asana-mcp-tools",
      "description": "ASANA_MCP_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "asana-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@jtalk22/asana-mcp"
      ],
      "env": {
        "ASANA_PAT": "${input:asana-pat}",
        "ASANA_WORKSPACE_GID": "${input:asana-workspace-gid}",
        "ASANA_MCP_TOOLS": "${input:asana-mcp-tools}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Asana MCP Server in other clients