Skip to main content
Glama
kevinlin

Spec-driven Development MCP Server

by kevinlin

spec_driven_dev_goal_confirmed

Confirm feature goal completion, assign a feature name, and transition to the requirements collection phase for structured development workflows.

Instructions

Confirm the completion of the feature goal, set the feature_name, and proceed to the requirements collection phase

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feature_nameYesFeature name generated based on the goal (e.g., user-auth)
goal_summaryYesBrief description of the feature goal
session_idYesSession identifier

Implementation Reference

  • The handler function that executes the tool logic: confirms the feature goal, logs the event, and returns a markdown-formatted response outlining the confirmed goal and instructing to call the next tool.
    export async function goalConfirmed(params: GoalConfirmedParams): Promise<string> { const { session_id, feature_name, goal_summary } = params; console.error(`[MCP] Goal confirmed for session ${session_id} with feature: ${feature_name}`); return `# ✅ Feature Goal Confirmed ## Confirmed Feature Goal: - **Feature Name**: \`${feature_name}\` - **Feature Description**: ${goal_summary} - **Project Directory**: \`docs/specs/${feature_name}/\` --- ## Next Stage: Requirements Gathering (2/5) ### Workflow Progress: - [x] 1. **Goal Collection** ✅ - [ ] 2. **Requirements Gathering** ← Next Stage - [ ] 3. Design Documentation - [ ] 4. Task Planning - [ ] 5. Task Execution Now please call \`spec_coding_requirements_start\` to begin detailed requirements gathering. **Session Information**: - Session ID: \`${session_id}\` - Feature Name: \`${feature_name}\``; }
  • TypeScript interface defining the input parameters for the goalConfirmed handler, matching the tool's input schema.
    export interface GoalConfirmedParams { session_id: string; feature_name: string; goal_summary: string; }
  • MCP tool input schema definition for validating arguments passed to the tool.
    inputSchema: { type: 'object', properties: { session_id: { type: 'string', description: 'Session identifier' }, feature_name: { type: 'string', description: 'Feature name generated based on the goal (e.g., user-auth)' }, goal_summary: { type: 'string', description: 'Brief description of the feature goal' } }, required: ['session_id', 'feature_name', 'goal_summary']
  • src/server.ts:38-58 (registration)
    Tool metadata registration in the list of tools returned by ListToolsRequestHandler.
    { name: 'spec_coding_goal_confirmed', description: 'Confirm the completion of the feature goal, set the feature_name, and proceed to the requirements collection phase', inputSchema: { type: 'object', properties: { session_id: { type: 'string', description: 'Session identifier' }, feature_name: { type: 'string', description: 'Feature name generated based on the goal (e.g., user-auth)' }, goal_summary: { type: 'string', description: 'Brief description of the feature goal' } }, required: ['session_id', 'feature_name', 'goal_summary'] }
  • src/server.ts:211-213 (registration)
    Switch case in CallToolRequestHandler that maps the tool name to the goalConfirmed handler function.
    case 'spec_coding_goal_confirmed': result = await goalConfirmed(args as any); break;

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/kevinlin/spec-driven-dev-mcp'

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