UNPKG

@moikas/code-audit-mcp

Version:

AI-powered code auditing via MCP using local Ollama models for security, performance, and quality analysis

17 lines 401 B
/** * MCP command - Manage MCP server configurations for Claude */ interface MCPOptions { list?: boolean; backup?: boolean; restore?: string; remove?: boolean; force?: boolean; environment?: string; } /** * Main MCP command handler */ export declare function mcpCommand(subcommand?: string, options?: MCPOptions): Promise<void>; export {}; //# sourceMappingURL=mcp.d.ts.map