knip-mcp-server
Version:
MCP server for knip.dev integration to help AI agents identify and clean up unused code
9 lines • 323 B
TypeScript
import { KnipMcpServerConfig } from '../types/index.js';
export interface McpTool {
name: string;
description: string;
inputSchema: any;
execute: (args: any) => Promise<any>;
}
export declare function createKnipTools(config: KnipMcpServerConfig): Record<string, McpTool>;
//# sourceMappingURL=index.d.ts.map