repomix-reader-mcp
Version:
Simple Model Context Protocol server for reading and grep-searching Repomix output files
15 lines • 362 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export interface ToolHandler {
(args: any): Promise<{
content: Array<{
type: string;
text: string;
}>;
isError?: boolean;
}>;
}
export interface ToolDefinition {
definition: Tool;
handler: ToolHandler;
}
//# sourceMappingURL=types.d.ts.map