{
  "$schema": "https://modelcontextprotocol.io/schemas/v1/server-card.json",
  "serverInfo": {
    "name": "Go Study Overseas MCP Server",
    "version": "1.0.0",
    "description": "Exposes tools for searching Italian and German university programs, scholarship calculations, and admission requirements."
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    }
  },
  "transport": {
    "type": "webmcp",
    "endpoint": "https://www.gostudyoverseas.in"
  },
  "tools": [
    {
      "name": "search_courses",
      "description": "Search English-taught courses in Italy and Germany by degree level and subject field.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "country": { "type": "string", "enum": ["italy", "germany", "russia", "kazakhstan", "uzbekistan"] },
          "degree": { "type": "string", "enum": ["bachelor", "master", "mbbs"] },
          "field": { "type": "string" }
        },
        "required": ["country"]
      }
    },
    {
      "name": "calculate_scholarship_eligibility",
      "description": "Estimate DSU scholarship eligibility based on family annual income (ISEE Parificato).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "familyIncomeINR": { "type": "number", "description": "Annual family income in Indian Rupees (INR)" }
        },
        "required": ["familyIncomeINR"]
      }
    }
  ]
}
