Skip to main content
Glama

get_workflow_guidance

Receive tailored workflow guidance and tool recommendations to document architectural decisions based on your project goals and current context.

Instructions

Get intelligent workflow guidance and tool recommendations based on your goals and project context to achieve expected outcomes efficiently

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalYesWhat you want to accomplish (e.g., "analyze new project", "document existing decisions", "security audit", "modernize legacy system")
projectContextYesCurrent state of your project (e.g., "new project", "existing project with ADRs", "legacy codebase", "greenfield development")
availableAssetsNoWhat assets you already have (e.g., ["PRD.md", "existing ADRs", "codebase", "documentation", "test suite"])
timeframeNoAvailable time/effort level
primaryConcernsNoMain areas of concern (e.g., ["security", "performance", "maintainability", "scalability", "compliance"])

Implementation Reference

  • Type definition for tool input arguments (schema)
    export interface GetWorkflowGuidanceArgs { goal: string; projectContext: string; availableAssets?: string[]; timeframe?: string; primaryConcerns?: string[]; }
  • Tool metadata registration in central catalog used for dynamic MCP tool listing and discovery
    TOOL_CATALOG.set('get_workflow_guidance', { name: 'get_workflow_guidance', shortDescription: 'Get workflow guidance', fullDescription: 'Provides guidance for specific workflows.', category: 'workflow', complexity: 'moderate', tokenCost: { min: 1500, max: 3000 }, hasCEMCPDirective: true, // Phase 4.3: Moderate tool - workflow guidance relatedTools: ['get_development_guidance', 'mcp_planning'], keywords: ['workflow', 'guidance', 'help', 'process'], requiresAI: true, inputSchema: { type: 'object', properties: { workflowType: { type: 'string' }, context: { type: 'string' }, }, required: ['workflowType'], }, });
  • Tool listed in server context documentation (informational)
    name: 'get_workflow_guidance', description: 'Get workflow guidance for specific development tasks', },

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