Asana
Summary
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.
Available Actions(30)
asana_list_workspaces
List all available workspaces in Asana. Optional input: opt_fields (string): Comma-separated list of optional fields to include.
asana_search_projects
Search for projects in Asana using name pattern matching. Required input: name_pattern (string): Regular expression pattern to match project names.
asana_search_tasks
Search tasks in a workspace with advanced filtering options. Required input: workspace (string): The workspace to search in.
asana_get_task
Get detailed information about a specific task. Required input: task_id (string): The task ID to retrieve.
asana_create_task
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.
asana_get_task_stories
Get comments and stories for a specific task. Required input: task_id (string): The task ID to get stories for.
asana_update_task
Update an existing task's details. Required input: task_id (string): The task ID to update.
asana_get_project
Get detailed information about a specific project. Required input: project_id (string): The project ID to retrieve.
asana_get_project_task_counts
Get the number of tasks in a project. Required input: project_id (string): The project ID to get task counts for.
asana_get_project_sections
Get sections in a project. Required input: project_id (string): The project ID to get sections for.
asana_create_task_story
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.
asana_add_task_dependencies
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.
asana_add_task_dependents
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.
asana_create_subtask
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.
asana_add_followers_to_task
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.
asana_get_multiple_tasks_by_gid
Get detailed information about multiple tasks by their GIDs. Required input: task_ids (array of strings or comma-separated string): Task GIDs to retrieve.
asana_get_project_status
Get a project status update. Required input: project_status_gid (string): The project status GID to retrieve.
asana_get_project_statuses
Get all status updates for a project. Required input: project_gid (string): The project GID to get statuses for.
asana_create_project_status
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.
asana_delete_project_status
Delete a project status update. Required input: project_status_gid (string): The project status GID to delete.
asana_set_parent_for_task
Set the parent of a task. Required input: task_id (string): The task ID to operate on, parent (string): The new parent of the task.
asana_get_tasks_for_tag
Get tasks for a specific tag. Required input: tag_gid (string): The tag GID to retrieve tasks for.
asana_get_tags_for_workspace
Get tags in a workspace. Required input: workspace_gid (string): Globally unique identifier for the workspace.
asana_create_section_for_project
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.
asana_add_task_to_section
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.
asana_create_project
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 to create, team_id (string): REQUIRED for organization workspaces.
asana_get_teams_for_user
Get teams to which the user has access. Required input: user_gid (string): The user GID to get teams for.
asana_get_teams_for_workspace
Get teams in a workspace. Required input: workspace_gid (string): The workspace GID to get teams for.
asana_list_workspace_users
Get users in a workspace. Required input: workspace_id (string): The workspace ID to get users for.
asana_get_project_hierarchy
Get the complete hierarchical structure of an Asana project. Required input: project_id (string): The project ID to get hierarchy for.
Community Reviews
No reviews yet. Be the first to review!
Sign in to join the conversation