List Project Tasks
aiproject_list_tasksScan paginated task summaries for a project, filtering by assignment type or status, to identify tasks for full detail retrieval.
Instructions
Calls GET /projects/{project}/tasks and returns paginated task summaries only. It never returns long content. Use this to scan tasks and optionally filter by assignment type/status before calling aiproject_get_task for one selected task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| baseUrl | No | Optional AIProject API root URL override. If omitted, AIPROJECT_BASE_URL from the MCP server environment is used. Accepts either http://127.0.0.1:8000 or http://127.0.0.1:8000/api/v1; app roots get /api/v1 appended automatically. | |
| apiKey | No | Optional AIProject API key override. If omitted, AIPROJECT_API_KEY from the MCP server environment is used. The key is sent as X-API-Key. | |
| project | Yes | Project ID. | |
| page | No | Optional page number. | |
| per_page | No | Optional records per page. The API caps this at 100. | |
| type | No | Optional assignment team filter. | |
| status | No | Optional assignment status filter. |