Skip to main content
Glama

get_development_guidance

Translate architectural decisions into specific coding tasks and implementation patterns for your development phase, technology stack, and team context.

Instructions

Get comprehensive development guidance that translates architectural decisions and workflow recommendations into specific coding tasks, implementation patterns, and development roadmap

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
developmentPhaseYesCurrent development phase
adrsToImplementNoList of ADR titles or file paths that need to be implemented in code
technologyStackNoCurrent technology stack (e.g., ["TypeScript", "React", "Node.js", "PostgreSQL", "Docker"])
currentProgressNoWhat has already been implemented or current state of development
teamContextNo
timelineNoDevelopment timeline or deadline constraints
focusAreasNoSpecific areas to focus on (e.g., ["API design", "database schema", "testing strategy", "deployment pipeline"])

Implementation Reference

  • TypeScript interface defining the input arguments (GetDevelopmentGuidanceArgs) for the get_development_guidance MCP tool.
    export interface GetDevelopmentGuidanceArgs { developmentPhase?: string; adrsToImplement?: string[]; technologyStack?: string[]; currentProgress?: string; teamContext?: { size?: string; experienceLevel?: string; }; timeline?: string; focusAreas?: string[]; }
  • Central registration of the get_development_guidance tool in TOOL_CATALOG Map. Defines metadata, category ('workflow'), input schema, token cost, related tools, and CE-MCP support for dynamic MCP tool discovery and listing.
    TOOL_CATALOG.set('get_development_guidance', { name: 'get_development_guidance', shortDescription: 'Get development guidance', fullDescription: 'Provides development guidance and best practices.', category: 'workflow', complexity: 'moderate', tokenCost: { min: 1500, max: 3000 }, hasCEMCPDirective: true, // Phase 4.3: Moderate tool - development guidance relatedTools: ['get_workflow_guidance', 'mcp_planning'], keywords: ['development', 'guidance', 'best-practices'], requiresAI: true, inputSchema: { type: 'object', properties: { topic: { type: 'string' }, level: { type: 'string', enum: ['beginner', 'intermediate', 'advanced'] }, }, required: ['topic'], }, });
  • Tool name and description listed in server context generator's hardcoded tool list for documentation and categorization in .mcp-server-context.md.
    name: 'get_development_guidance', description: 'Get development guidance and best practices',

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/tosin2013/mcp-adr-analysis-server'

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