user
Pack: codewars · Endpoint: https://gateway.pipeworx.io/codewars/mcp
User profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
username | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/codewars/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
username | string | Codewars username |
name | string | User’s display name |
honor | number | User’s honor points |
clan | string | User’s clan name |
leaderboard_position | number | null | Position on leaderboard |
skills | array | List of programming skills |
ranks | object | |
code_challenges | object |
Full JSON Schema
{
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "Codewars username"
},
"name": {
"type": "string",
"description": "User's display name"
},
"honor": {
"type": "number",
"description": "User's honor points"
},
"clan": {
"type": "string",
"description": "User's clan name"
},
"leaderboard_position": {
"type": [
"number",
"null"
],
"description": "Position on leaderboard"
},
"skills": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of programming skills"
},
"ranks": {
"type": "object",
"properties": {
"overall": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Overall rank number"
},
"name": {
"type": "string",
"description": "Rank name"
},
"color": {
"type": "string",
"description": "Rank color code"
},
"score": {
"type": "number",
"description": "Overall score"
}
}
},
"languages": {
"type": "object",
"description": "Language-specific ranks"
}
}
},
"code_challenges": {
"type": "object",
"properties": {
"total_authored": {
"type": "number",
"description": "Total authored kata"
},
"total_completed": {
"type": "number",
"description": "Total completed challenges"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"codewars": {
"url": "https://gateway.pipeworx.io/codewars/mcp"
}
}
}
See Getting Started for client-specific install steps.