asana-mcp

asana-mcp

Enables to interact with Asana through Claude, with read and write tools for tasks, projects, tags, and custom fields, with no destructive operations.

Category
Visit Server

README

asana-mcp

A minimal, zero-destructive MCP server for Asana — built because the official Anthropic/Asana connector is broken.

Why this exists

The official Asana connector surfaced in Claude Code as mcp__claude_ai_Asana__* tools. As of mid-2026 it stopped working — claude.ai's registry returns "Server not found" and Asana's /sse endpoint has been deprecated. There's no ETA on a fix.

Rather than wait, this is a clean TypeScript MCP server using the official asana npm SDK (v3.x) and a Personal Access Token. It gives Claude Code full Asana access with no third-party middleman, no destructive operations, and a minimal dependency footprint.

Features

  • 26 tools — 13 read, 13 write, 0 destructive (no delete operations)
  • Custom field support — set enum, multi-enum, number, text, and date custom fields on create and update
  • Read-only mode — set READ_ONLY_MODE=true to hide all write tools
  • Minimal depsasana SDK, zod, @modelcontextprotocol/sdk, dotenv

Tools

Category Tools
Tasks search_tasks, get_task, get_task_stories, create_task, update_task, create_subtask, create_task_story, get_multiple_tasks_by_gid, set_parent_for_task, add_task_dependencies, add_task_dependents
Projects search_projects, get_project, get_project_sections, get_project_task_counts, get_project_status, create_project, create_project_status
Tags get_tags_for_workspace, get_tags_for_task, create_tag, add_tag_to_task, remove_tag_from_task
Misc list_workspaces, add_project_to_task, remove_project_from_task

Requirements

  • Node.js ≥ 18
  • An Asana account with a Personal Access Token

Setup

1. Get an Asana PAT

Go to Asana → Settings → Developer apps → Personal access tokens and create a token.

2. Configure environment

cp .env.example .env
# Edit .env and fill in your values

.env:

ASANA_ACCESS_TOKEN=your_token_here
ASANA_WORKSPACE_ID=your_workspace_gid
ASANA_DEFAULT_PROJECT_ID=your_default_project_gid   # optional fallback
READ_ONLY_MODE=false

Finding your Workspace GID: Open Asana in a browser and navigate to any project. The URL looks like https://app.asana.com/0/<workspace_gid>/<project_gid>. The first long number after /0/ is your workspace GID. Alternatively, after setup you can call asana_list_workspaces and it will return it.

Note: Always pass project explicitly when creating tasks. If omitted, the server falls back to ASANA_DEFAULT_PROJECT_ID.

3. Build

npm install
npm run build

4. Register with Claude Code

claude mcp add asana -s user -- node /absolute/path/to/asana-mcp/dist/index.js

Or with env vars inline (if you prefer not to use a .env file):

claude mcp add asana -s user \
  -e ASANA_ACCESS_TOKEN=your_token \
  -e ASANA_WORKSPACE_ID=your_workspace_gid \
  -- node /absolute/path/to/asana-mcp/dist/index.js

Restart Claude Code, then enable via /mcp.

Custom fields

asana_create_task and asana_update_task accept a custom_fields object. Keys are custom-field GIDs; value shape depends on field type:

{
  "custom_fields": {
    "1234567890000001": "9876543210000001",
    "1234567890000002": ["9876543210000002", "9876543210000003"],
    "1234567890000003": 42,
    "1234567890000004": "plain text",
    "1234567890000005": { "date": "2026-12-31" }
  }
}
Field type Value
Single-select enum Option GID string
Multi-select enum Array of option GID strings
Number Number
Text String
Date {"date":"YYYY-MM-DD"}

The field must be enabled on the task's project/portfolio for the API to accept it.

Development

npm run build      # tsc → dist/

After rebuilding, restart your Claude Code session — stdio MCP servers are spawned at session start and don't hot-reload.

License

UNLICENSED

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured