user_rating

Pack: codeforces · Endpoint: https://gateway.pipeworx.io/codeforces/mcp

Full rating history for a user.

Parameters

NameTypeRequiredDescription
handlestringyes

Example call

curl -X POST https://gateway.pipeworx.io/codeforces/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_rating","arguments":{}}}'

Response shape

Always returns: status

FieldTypeDescription
statusstringResponse status (OK or FAILED)
resultarrayArray of rating change objects
commentstringError comment (if status is FAILED)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Response status (OK or FAILED)"
    },
    "result": {
      "type": "array",
      "description": "Array of rating change objects",
      "items": {
        "type": "object",
        "properties": {
          "contestId": {
            "type": "number",
            "description": "Contest ID"
          },
          "contestName": {
            "type": "string",
            "description": "Contest name"
          },
          "handle": {
            "type": "string",
            "description": "User handle"
          },
          "rank": {
            "type": "number",
            "description": "Rank in contest"
          },
          "ratingUpdateTimeSeconds": {
            "type": "number",
            "description": "Unix timestamp of rating update"
          },
          "oldRating": {
            "type": "number",
            "description": "Rating before contest"
          },
          "newRating": {
            "type": "number",
            "description": "Rating after contest"
          }
        }
      }
    },
    "comment": {
      "type": "string",
      "description": "Error comment (if status is FAILED)"
    }
  },
  "required": [
    "status"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "codeforces": {
      "url": "https://gateway.pipeworx.io/codeforces/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026