@aaswe/codebase-ai
Version:
AI-Assisted Software Engineering (AASWE) - Rich codebase context for IDE LLMs
21 lines • 576 B
JavaScript
;
/**
* MCP Server Types
*
* Type definitions for Model Context Protocol server that provides
* rich codebase context to IDE LLMs using TTL files and knowledge graphs.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MCPServerError = void 0;
class MCPServerError extends Error {
code;
data;
constructor(code, message, data) {
super(message);
this.name = 'MCPServerError';
this.code = code;
this.data = data;
}
}
exports.MCPServerError = MCPServerError;
//# sourceMappingURL=types.js.map