{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.schema.json",
  "serverInfo": {
    "name": "Studify MCP Server",
    "version": "1.0.0"
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://www.stud-ify.com/mcp/sse"
  },
  "capabilities": {
    "prompts": {},
    "resources": {
      "universities": {
        "description": "List of all universities in the directory"
      }
    },
    "tools": {
      "list_universities": {
        "description": "Retrieve a list of universities with their names and slugs.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "limit": { "type": "number", "default": 10 }
          }
        }
      },
      "convert_markdown": {
        "description": "Convert any Studify page to clean Markdown.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "url": { "type": "string", "description": "The full Studify URL to convert" }
          },
          "required": ["url"]
        }
      }
    }
  }
}
