getTaskListsByProjectId
Retrieve all task lists associated with a specific project ID using the Teamwork MCP server to streamline project management workflows.
Instructions
Get all task lists by project ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project to get task lists from |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project to get task lists from",
"type": "integer"
}
},
"required": [
"projectId"
],
"type": "object"
}