vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
16 lines • 348 B
TypeScript
export interface ToolConfig {
description: string;
use_cases: string[];
input_patterns: string[];
}
export interface ToolsConfig {
tools: {
[toolName: string]: ToolConfig;
};
}
export interface MatchResult {
toolName: string;
confidence: number;
matchedPattern?: string;
}
//# sourceMappingURL=tools.d.ts.map