From 9d95add9fd39d67f4a446426ed929fbd3b980b38 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:47:52 +0000 Subject: [PATCH] Add Asana MCP server definition (Remote HTTP) Official Asana remote MCP server with OAuth authentication for managing tasks, projects, workspaces, and comments via https://mcp.asana.com/sse. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.asana-mcp.json | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 servers/com.asana-mcp.json diff --git a/servers/com.asana-mcp.json b/servers/com.asana-mcp.json new file mode 100644 index 0000000..1fcaa6b --- /dev/null +++ b/servers/com.asana-mcp.json @@ -0,0 +1,44 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.asana-mcp", + "name": "Asana", + "alias": "asana", + "description": "Manage Asana tasks, projects, workspaces, and comments. Create and update tasks, search projects, manage dependencies and subtasks.", + "icon": "https://avatars.githubusercontent.com/u/1472111?v=4", + "schema_version": "2.1", + "categories": ["productivity"], + "tags": ["asana", "tasks", "project-management", "productivity", "collaboration"], + + "transport": { + "type": "http", + "url": "https://mcp.asana.com/sse", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connects via OAuth 2.0. Your MCP host will initiate the Asana OAuth flow to authorize access to your workspace." + }, + + "contributor": { + "name": "Asana", + "github": "Asana", + "url": "https://asana.com" + }, + + "links": { + "homepage": "https://asana.com", + "documentation": "https://developers.asana.com" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}