recent_actions

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

Recent global actions feed.

Parameters

NameTypeRequiredDescription
max_countnumberno1-100 (default 30)

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":"recent_actions","arguments":{}}}'

Response shape

Always returns: status

FieldTypeDescription
statusstringResponse status (OK or FAILED)
resultarrayArray of recent action 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 recent action objects",
      "items": {
        "type": "object",
        "properties": {
          "contestId": {
            "type": "number",
            "description": "Contest ID"
          },
          "handle": {
            "type": "string",
            "description": "User handle"
          },
          "rating": {
            "type": "number",
            "description": "User rating"
          },
          "ratingUpdateTimeSeconds": {
            "type": "number",
            "description": "Unix timestamp of action"
          },
          "newsTitle": {
            "type": "string",
            "description": "News title or action description"
          },
          "text": {
            "type": "string",
            "description": "Action text"
          },
          "blogEntryId": {
            "type": "number",
            "description": "Blog entry ID (if applicable)"
          }
        }
      }
    },
    "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