user
Pack: codeforces · Endpoint: https://gateway.pipeworx.io/codeforces/mcp
User profile(s) by handle (up to 10000 semicolon-separated).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
handles | array | yes | 1-10000 handles |
items | string | no |
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","arguments":{}}}'
Response shape
Always returns: status
| Field | Type | Description |
|---|---|---|
status | string | Response status (OK or FAILED) |
result | array | Array of user profile objects |
comment | string | Error 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 user profile objects",
"items": {
"type": "object",
"properties": {
"handle": {
"type": "string",
"description": "User handle"
},
"email": {
"type": "string",
"description": "User email (if available)"
},
"vkId": {
"type": "string",
"description": "VK ID (if available)"
},
"openVkId": {
"type": "string",
"description": "Open VK ID (if available)"
},
"firstName": {
"type": "string",
"description": "First name (if available)"
},
"lastName": {
"type": "string",
"description": "Last name (if available)"
},
"country": {
"type": "string",
"description": "Country ID (if available)"
},
"city": {
"type": "string",
"description": "City ID (if available)"
},
"organization": {
"type": "string",
"description": "Organization (if available)"
},
"contribution": {
"type": "number",
"description": "Contribution score"
},
"rating": {
"type": "number",
"description": "Current rating (if rated)"
},
"maxRating": {
"type": "number",
"description": "Maximum rating achieved"
},
"maxRank": {
"type": "string",
"description": "Maximum rank achieved"
},
"rank": {
"type": "string",
"description": "Current rank"
},
"lastOnlineTimeSeconds": {
"type": "number",
"description": "Unix timestamp of last online"
},
"registrationTimeSeconds": {
"type": "number",
"description": "Unix timestamp of registration"
},
"friendOfCount": {
"type": "number",
"description": "Number of users who friend this user"
},
"avatar": {
"type": "string",
"description": "Avatar URL"
},
"titlePhoto": {
"type": "string",
"description": "Title photo URL"
}
}
}
},
"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.