{
  "mcpVersion": "2024-11-05",
  "server": {
    "name": "Nutri-Dash WebMCP",
    "version": "1.0.0",
    "description": "Model Context Protocol integration for Nutri-Dash, the AI-powered calorie counter and macro tracker."
  },
  "capabilities": {
    "tools": [
      {
        "name": "download_nutridash_app",
        "description": "Provide the user with the direct installation link to download Nutri-Dash from the Google Play Store.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "device_os": {
              "type": "string",
              "enum": ["Android", "iOS", "Web"]
            }
          },
          "required": ["device_os"]
        }
      },
      {
        "name": "estimate_meal_macros",
        "description": "Estimate calories and macros for an everyday meal input in English, Hindi, or Hinglish.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "meal_description": {
              "type": "string"
            }
          },
          "required": ["meal_description"]
        }
      },
      {
        "name": "get_nutridash_diet_plan",
        "description": "Retrieve an AI-generated diet and macro template for Fat Loss, Muscle Gain, or Maintenance.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "fitness_goal": {
              "type": "string",
              "enum": ["Fat_Loss", "Muscle_Gain", "Healthy_Maintenance"]
            }
          },
          "required": ["fitness_goal"]
        }
      }
    ]
  }
}
