MCP Server for Asana provides a bridge to the Asana API, enabling AI assistants to manage tasks, projects, workspaces, and comments directly within conversation interfaces. Built by cristip73, it offers over 30 tools for operations like searching tasks, creating projects, managing dependencies, and generating project summaries. The server handles authentication through personal access tokens, supports custom fields with various data types, and includes features for batch operations and project hierarchy visualization. Particularly valuable for project management workflows, it allows users to track progress, organize tasks, and collaborate on Asana projects without leaving their AI assistant interface.
List all available workspaces in Asana. Optional input: opt_fields (string): Comma-separated list of optional fields to include. Returns: List of workspaces.
Search for projects in Asana using name pattern matching. Required input: name_pattern (string): Regular expression pattern to match project names. Optional input: Various filters including workspace, team, archived status, limit, offset, and opt_fields.
Search tasks in a workspace with advanced filtering options. Required input: workspace (string): The workspace to search in. Optional input: Various text and filtering options, sort options, and opt_fields.
Get detailed information about a specific task. Required input: task_id (string): The task ID to retrieve. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Create a new task in a project. Required input: project_id (string): The project to create the task in, name (string): Name of the task. Optional input: Various fields including notes, due_on, assignee, followers, and custom_fields.
Get comments and stories for a specific task. Required input: task_id (string): The task ID to get stories for. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Update an existing task's details. Required input: task_id (string): The task ID to update. Optional input: Various fields including name, notes, due_on, assignee, completed, and custom_fields.
Get detailed information about a specific project. Required input: project_id (string): The project ID to retrieve. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get the number of tasks in a project. Required input: project_id (string): The project ID to get task counts for. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get sections in a project. Required input: project_id (string): The project ID to get sections for. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Create a comment or story on a task. Required input: task_id (string): The task ID to add the story to, text (string): The text content of the story/comment. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Set dependencies for a task. Required input: task_id (string): The task ID to add dependencies to, dependencies (array of strings): Array of task IDs that this task depends on.
Set dependents for a task. Required input: task_id (string): The task ID to add dependents to, dependents (array of strings): Array of task IDs that depend on this task.
Create a new subtask for an existing task. Required input: parent_task_id (string): The parent task ID to create the subtask under, name (string): Name of the subtask. Optional input: Various fields including notes, due_on, and assignee.
Add followers to a task. Required input: task_id (string): The task ID to add followers to, followers (array of strings): Array of user IDs to add as followers to the task.
Get detailed information about multiple tasks by their GIDs. Required input: task_ids (array of strings): Task GIDs to retrieve (max 25). Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get a project status update. Required input: project_status_gid (string): The project status GID to retrieve. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get all status updates for a project. Required input: project_gid (string): The project GID to get statuses for. Optional input: Various pagination and filtering options.
Create a new status update for a project. Required input: project_gid (string): The project GID to create the status for, text (string): The text content of the status update. Optional input: Various fields including color, title, and html_text.
Delete a project status update. Required input: project_status_gid (string): The project status GID to delete.
Set the parent of a task and position the subtask within the other subtasks of that parent. Required input: task_id (string): The task ID to operate on, parent (string): The new parent of the task. Optional input: Various positioning options.
Get tasks for a specific tag. Required input: tag_gid (string): The tag GID to retrieve tasks for. Optional input: Various pagination and filtering options.
Get tags in a workspace. Required input: workspace_gid (string): Globally unique identifier for the workspace. Optional input: Various pagination and filtering options.
Create a new section in a project. Required input: project_id (string): The project ID to create the section in, name (string): Name of the section to create. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Add a task to a specific section in a project. Required input: section_id (string): The section ID to add the task to, task_id (string): The task ID to add to the section. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Create a new project in a workspace. Required input: workspace_id (string): The workspace ID to create the project in, name (string): Name of the project, team_id (string): REQUIRED for organization workspaces. Optional input: Various fields including public, archived, and color.
Get teams to which the user has access. Required input: user_gid (string): The user GID to get teams for. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get teams in a workspace. Required input: workspace_gid (string): The workspace GID to get teams for. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
Get users in a workspace. Required input: workspace_id (string): The workspace ID to get users for. Optional input: Various pagination options.
Get the complete hierarchical structure of an Asana project. Required input: project_id (string): The project ID to get hierarchy for. Optional input: Various options for including tasks and subtasks.
No reviews yet. Be the first to review!
Sign in to join the conversation