Specif-ai MCP Server

Official

get-tasks

Get Tasks for a particular User Story

Input Schema

NameRequiredDescriptionDefault
cwdYesAbsolute 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.
prdIdYesThe ID of the PRD to get user stories for
userStoryIdYesThe 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" }