UNPKG

mcp-workflow-server-enhanced

Version:

Enhanced MCP Workflow Server with smart problem routing, comprehensive validation, guide compliance, and robust error handling. Intelligently routes to appropriate AI functions based on problem type.

32 lines (25 loc) 1.15 kB
/** * MCP Workflow Server - Main Export * * A comprehensive MCP server ecosystem implementing a structured AI workflow * with 7 specialized functions: Improve Prompt, Research, Cognitive Analysis, * Planning, Task Generation, Implementation, and Problem Solving. */ // Main server class export { MCPWorkflowServer } from './server.js'; // Workflow orchestration export { WorkflowOrchestrator } from './shared/workflow.js'; // Types and schemas export * from './shared/types.js'; // Utilities export * from './shared/utils.js'; // Individual function creators export { createImprovePromptFunction } from './functions/improve-prompt.js'; export { createResearchFunction } from './functions/research.js'; export { createCognitiveFunction } from './functions/cognitive.js'; export { createPlannerFunction } from './functions/planner.js'; export { createTaskGenerationFunction } from './functions/task-generation.js'; export { createImplementationFunction } from './functions/implementation.js'; export { createProblemSolverFunction } from './functions/problem-solver.js'; // Default export for convenience export default MCPWorkflowServer;