/** * MCP Git Tools * * Read-only Git tools for status, diff, and log operations. */ import type { ToolDefinition } from './index.js'; /** * Register git tools */ export declare function registerGitTools(): ToolDefinition[]; /** * Handle git tool calls */ export declare function handleGitTool(name: string, args: Record): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=git.d.ts.map