get-tasks
Retrieve tasks associated with a specific user story by providing the PRD ID, user story ID, and project directory path. Integrates with the Specif-ai MCP Server for streamlined task management.
Instructions
Get Tasks for a particular User Story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | Yes | Absolute path where the tool is called from to auto-infer the project path. This path will be current working directory (cwd) from where the tool is called. | |
prdId | Yes | The ID of the PRD to get user stories for | |
userStoryId | Yes | The ID of the User Story to get tasks for |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Absolute path where the tool is called from to auto-infer the project path. This path will be current working directory (cwd) from where the tool is called.",
"type": "string"
},
"prdId": {
"description": "The ID of the PRD to get user stories for",
"type": "string"
},
"userStoryId": {
"description": "The ID of the User Story to get tasks for",
"type": "string"
}
},
"required": [
"prdId",
"userStoryId",
"cwd"
],
"type": "object"
}