vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
8 lines • 670 B
TypeScript
import { PathValidationResult } from './types.js';
export declare function normalizePath(inputPath: string, baseDirectory?: string): string;
export declare function isPathWithin(childPath: string, parentPath: string): boolean;
export declare function validatePathSecurity(inputPath: string, allowedDirectory: string): PathValidationResult;
export declare function createSecurePath(inputPath: string, allowedDirectory: string): string;
export declare function resolveSecurePath(relativePath: string, allowedDirectory: string): string;
export declare function getRelativePath(absolutePath: string, allowedDirectory: string): string;
//# sourceMappingURL=pathUtils.d.ts.map