Skip to main content
Glama

speckit_tasks

Generate structured task lists for project specifications and implementation phases using guided prompts.

Instructions

Generate task list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'speckit_tasks' tool. It returns a structured prompt message that instructs the LLM to read a task template file and generate a list of actionable tasks based on the technical plan.
    private async handleTasks(commandsPath: string) {
        return {
            messages: [
                {
                    role: "user",
                    content: {
                        type: "text",
                        text: `Please read the task breakdown template at 'commands/speckit.tasks'[Note that if this file exists, it is generally in the current directory's commands/ directory,Scan this folder directly to obtain it,And the suffixes of each project are not consistent: speckit.tasks.xxx] [It's important. You must read it]. Use this template to break down the technical plan into a list of actionable tasks.`,
                    },
                },
            ],
        };
    }
  • src/index.ts:171-177 (registration)
    Registration of the 'speckit_tasks' tool in the MCP server's tools list, including name, description, and empty input schema.
        name: "speckit_tasks",
        description: "Generate task list",
        inputSchema: {
            type: "object",
            properties: {},
        },
    },
  • Input schema definition for the 'speckit_tasks' tool, which accepts an empty object (no parameters).
    inputSchema: {
        type: "object",
        properties: {},
    },
  • src/index.ts:209-211 (registration)
    Dispatch/registration case in the tool request handler switch statement that routes 'speckit_tasks' calls to the handleTasks method.
    case "speckit_tasks":
        result = await this.handleTasks(commandsPath);
        break;

Tool Definition Quality

Score is being calculated. Check back soon.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anyiba/spec-kit-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server