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.
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=trueto hide all write tools - Minimal deps —
asanaSDK,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
projectexplicitly when creating tasks. If omitted, the server falls back toASANA_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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。