mcp-server-asana

asana_search_projects

Search for Asana projects by name pattern and workspace, including optional fields. Use regular expressions to filter project names and retrieve archived projects if needed.

Instructions

Search for projects in Asana using name pattern matching

Input Schema

NameRequiredDescriptionDefault
archivedNoOnly return archived projects
name_patternYesRegular expression pattern to match project names
opt_fieldsNoComma-separated list of optional fields to include
workspaceYesThe workspace to search in

Input Schema (JSON Schema)

{ "properties": { "archived": { "default": false, "description": "Only return archived projects", "type": "boolean" }, "name_pattern": { "description": "Regular expression pattern to match project names", "type": "string" }, "opt_fields": { "description": "Comma-separated list of optional fields to include", "type": "string" }, "workspace": { "description": "The workspace to search in", "type": "string" } }, "required": [ "workspace", "name_pattern" ], "type": "object" }
ID: ln1qzdhwmc