using System.Collections.Generic; namespace AxCopilot.Models; public class McpToolDefinition { public string Name { get; set; } = ""; public string Description { get; set; } = ""; public string ServerName { get; set; } = ""; public Dictionary Parameters { get; set; } = new Dictionary(); }