claude-code-emacs-mcp-server
Version:
MCP server for Claude Code Emacs integration
15 lines • 676 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.describeSymbolOutputSchema = exports.describeSymbolInputSchema = void 0;
const zod_1 = require("zod");
// Input schema for describeSymbol tool
exports.describeSymbolInputSchema = zod_1.z.object({
file: zod_1.z.string().describe('File path relative to project root'),
line: zod_1.z.number().describe('Line number (1-based)'),
symbol: zod_1.z.string().describe('Symbol name to describe')
});
// Output schema for describeSymbol tool
exports.describeSymbolOutputSchema = zod_1.z.object({
documentation: zod_1.z.string().optional()
});
//# sourceMappingURL=describe-schema.js.map