vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
9 lines • 835 B
TypeScript
import fsSync from 'fs';
export declare function readFileSecure(filePath: string, allowedDirectory: string, encoding?: BufferEncoding, allowedOutputDirectory?: string): Promise<string>;
export declare function writeFileSecure(filePath: string, content: string, allowedDirectory: string, encoding?: BufferEncoding, allowedOutputDirectory?: string): Promise<void>;
export declare function appendToFileSecure(filePath: string, content: string, allowedDirectory: string, encoding?: BufferEncoding, allowedOutputDirectory?: string): Promise<void>;
export declare function readDirSecure(dirPath: string, allowedDirectory: string, options?: {
withFileTypes?: boolean;
}): Promise<fsSync.Dirent[]>;
export declare function statSecure(filePath: string, allowedDirectory: string): Promise<fsSync.Stats>;
//# sourceMappingURL=fsUtils.d.ts.map