UNPKG

@benyue1978/soloflow-mcp

Version:

A Model Context Protocol (MCP) server for project document management with 32 comprehensive prompts covering the complete software development lifecycle

22 lines 778 B
import { DocType, ValidationResult } from './types/docTypes.js'; /** * Validate project root path for security and correctness */ export declare function validateProjectRoot(projectRoot: string): ValidationResult; /** * Validate document type against allowed types */ export declare function validateDocType(type: string): ValidationResult; /** * Get the .soloflow directory path for a project */ export declare function getSoloflowPath(projectRoot: string): string; /** * Get the full path for a specific document */ export declare function getDocumentPath(projectRoot: string, type: DocType): string; /** * Ensure .soloflow directory exists */ export declare function ensureSoloflowDirectory(projectRoot: string): Promise<void>; //# sourceMappingURL=context.d.ts.map