aico-pack
Version:
A tool to pack repository contents to single file for AI consumption
61 lines • 3.27 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import fs from 'node:fs/promises';
import path from 'node:path';
import { z } from 'zod';
import { logger } from '../../shared/logger.js';
import { buildMcpToolErrorResponse, buildMcpToolSuccessResponse } from './mcpToolRuntime.js';
/**
* Register file system directory listing tool
*/
export const registerFileSystemReadDirectoryTool = (mcpServer) => {
mcpServer.tool('file_system_read_directory', 'List the contents of a directory using an absolute path. Returns a formatted list showing files and subdirectories with clear [FILE]/[DIR] indicators. Useful for exploring project structure and understanding codebase organization.', {
path: z.string().describe('Absolute path to the directory to list'),
}, {
title: 'Read Directory',
readOnlyHint: true,
destructiveHint: false,
idempotentHint: true,
openWorldHint: false,
}, (_a) => __awaiter(void 0, [_a], void 0, function* ({ path: directoryPath }) {
try {
logger.trace(`Listing directory at absolute path: ${directoryPath}`);
// Ensure path is absolute
if (!path.isAbsolute(directoryPath)) {
return buildMcpToolErrorResponse([`Error: Path must be absolute. Received: ${directoryPath}`]);
}
// Check if directory exists
try {
const stats = yield fs.stat(directoryPath);
if (!stats.isDirectory()) {
return buildMcpToolErrorResponse([
`Error: The specified path is not a directory: ${directoryPath}. Use file_system_read_file for files.`,
]);
}
}
catch (_b) {
return buildMcpToolErrorResponse([`Error: Directory not found at path: ${directoryPath}`]);
}
// Read directory contents
const entries = yield fs.readdir(directoryPath, { withFileTypes: true });
const formatted = entries
.map((entry) => `${entry.isDirectory() ? '[DIR]' : '[FILE]'} ${entry.name}`)
.join('\n');
return buildMcpToolSuccessResponse([`Contents of ${directoryPath}:`, formatted || '(empty directory)']);
}
catch (error) {
logger.error(`Error in file_system_read_directory tool: ${error}`);
return buildMcpToolErrorResponse([
`Error listing directory: ${error instanceof Error ? error.message : String(error)}`,
]);
}
}));
};
//# sourceMappingURL=fileSystemReadDirectoryTool.js.map