UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

18 lines 922 B
import { Intent, RecognizedIntent } from '../../types/nl.js'; import { CommandHandler, CommandExecutionContext, CommandExecutionResult } from '../command-handlers.js'; export declare class SearchFilesHandler implements CommandHandler { intent: Intent; handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>; private extractSearchPattern; private extractSearchOptions; private extractProjectPath; private formatBytes; } export declare class SearchContentHandler implements CommandHandler { intent: Intent; handle(recognizedIntent: RecognizedIntent, toolParams: Record<string, unknown>, context: CommandExecutionContext): Promise<CommandExecutionResult>; private extractSearchQuery; private extractSearchOptions; private extractProjectPath; } //# sourceMappingURL=search-handlers.d.ts.map