get-user-contest-ranking
Retrieve a LeetCode user's contest ranking by submitting their username. This tool enables access to contest data through the MCP server for LeetCode.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | LeetCode username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"description": "LeetCode username",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}