{
  "mcpVersion": "1.0.0",
  "server": {
    "name": "bharathrise-mcp-server",
    "description": "Model Context Protocol server for BharathRise.com overseas education data & counselling tools.",
    "url": "https://bharathrise.com/api/mcp"
  },
  "tools": [
    {
      "name": "get_country_guide",
      "description": "Fetch detailed visa rules, post-study work options, and university lists for a country.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "enum": [
              "usa",
              "canada",
              "uk",
              "australia",
              "germany",
              "ireland",
              "europe"
            ]
          }
        },
        "required": [
          "country"
        ]
      }
    },
    {
      "name": "search_scholarships",
      "description": "Search available scholarships for international study.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string"
          },
          "degree": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "calculate_education_loan",
      "description": "Estimate collateral and non-collateral education loan sanction limits.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "loan_amount_inr": {
            "type": "number"
          },
          "has_collateral": {
            "type": "boolean"
          }
        }
      }
    }
  ]
}