vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
19 lines • 784 B
TypeScript
export declare class PathResolver {
private static instance;
private securityEngine;
private constructor();
static getInstance(): PathResolver;
private getSecurityEngine;
resolveProjectRootPath(providedPath?: string, contextId?: string): string;
resolveProjectPathFromContext(context: {
projectPath?: string;
sessionId?: string;
}): string;
getReadDirectory(): string;
getOutputDirectory(): string;
createSecureReadPath(relativePath: string): Promise<string>;
createSecureOutputPath(relativePath: string): Promise<string>;
}
export declare function getPathResolver(): PathResolver;
export declare function resolveProjectPath(providedPath?: string, contextId?: string): string;
//# sourceMappingURL=path-resolver.d.ts.map