code-auditor-mcp
Version:
Multi-language code quality auditor with MCP server - Analyze TypeScript, JavaScript, and Go code for SOLID principles, DRY violations, security patterns, and more
27 lines • 690 B
TypeScript
/**
* Simple MCP-UI HTTP Server for Code Auditor
*
* This provides HTTP endpoints that return UI resources for interactive dashboards
* while reusing all the existing audit tool logic.
*/
import express from 'express';
declare const app: express.Application;
/**
* Start the MCP-UI HTTP server
*/
export declare function startMcpUIServer(): void;
declare global {
var auditSessions: Map<string, {
auditResult: any;
timestamp: string;
path: string;
}>;
var codeMapSessions: Map<string, {
codeMap: any;
timestamp: string;
path: string;
}>;
}
export { app };
//# sourceMappingURL=mcp-ui-simple.d.ts.map