@hpbyte/h-codex-mcp
Version:
Model Context Protocol for h-codexx
16 lines • 801 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CodeSearchInputSchema = exports.CodeIndexInputSchema = exports.CodeClearInputSchema = void 0;
const zod_1 = require("zod");
exports.CodeClearInputSchema = {
project: zod_1.z.string().describe('Project name to clear indices from'),
};
exports.CodeIndexInputSchema = {
path: zod_1.z.string().describe('Path to the directory to explore and index'),
project: zod_1.z.string().optional().describe('Project name (defaults to directory name)'),
};
exports.CodeSearchInputSchema = {
query: zod_1.z.string().describe('Search query to find similar code chunks'),
projects: zod_1.z.array(zod_1.z.string()).optional().describe('List of project names to search within'),
};
//# sourceMappingURL=schemas.js.map