export interface SkillMcpArgs { mcp_name: string; tool_name?: string; resource_name?: string; prompt_name?: string; arguments?: string | Record; grep?: string; } export type OperationType = "tool" | "resource" | "prompt"; export interface ResolvedOperation { type: OperationType; name: string; }