knip-mcp-server
Version:
MCP server for knip.dev integration to help AI agents identify and clean up unused code
14 lines • 411 B
TypeScript
import { KnipMcpServerConfig } from './types/index.js';
declare class KnipMcpServer {
private server;
private config;
constructor(config?: KnipMcpServerConfig);
private setupHandlers;
start(): Promise<void>;
close(): Promise<void>;
}
export { KnipMcpServer };
export * from './types/index.js';
export * from './lib/knip-client.js';
//# sourceMappingURL=index.d.ts.map