read_project
Retrieve detailed project information and task statuses using the project ID from the taskqueue-mcp server.
Instructions
Read all information for a given project, by its ID, including its tasks' statuses.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project to read (e.g., proj-1). |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project to read (e.g., proj-1).",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}