asana_search_projects
Search for Asana projects using name pattern matching to quickly locate specific projects across workspaces and teams.
Instructions
Search for projects in Asana using name pattern matching
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workspace | No | The workspace to search in (optional if DEFAULT_WORKSPACE_ID is set) | |
| team | No | The team to filter projects on | |
| name_pattern | Yes | Regular expression pattern to match project names | |
| archived | No | Only return archived projects | |
| limit | No | Results per page (1-100) | |
| offset | No | Pagination offset token | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"default": false,
"description": "Only return archived projects",
"type": "boolean"
},
"limit": {
"description": "Results per page (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"name_pattern": {
"description": "Regular expression pattern to match project names",
"type": "string"
},
"offset": {
"description": "Pagination offset token",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"team": {
"description": "The team to filter projects on",
"type": "string"
},
"workspace": {
"description": "The workspace to search in (optional if DEFAULT_WORKSPACE_ID is set)",
"type": "string"
}
},
"required": [
"name_pattern"
],
"type": "object"
}