valorant-leaderboard
Retrieve Valorant leaderboard data for specific regions using the OP.GG MCP Server. Enables users to access ranked player standings by region for competitive insights.
Instructions
Fetch Valorant leaderboard by region
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| region | Yes | Regions in Valorant |
Input Schema (JSON Schema)
{
"properties": {
"region": {
"description": "Regions in Valorant",
"enum": [
"AP",
"BR",
"EU",
"KR",
"LATAM",
"NA"
],
"type": "string"
}
},
"required": [
"region"
],
"type": "object"
}