user_completed
Pack: codewars · Endpoint: https://gateway.pipeworx.io/codewars/mcp
Completed challenges.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
username | string | yes | |
page | number | no |
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_completed","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | array | List of completed challenges |
totalPages | number | Total number of pages |
totalItems | number | Total number of completed challenges |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Challenge ID"
},
"name": {
"type": "string",
"description": "Challenge name"
},
"slug": {
"type": "string",
"description": "Challenge slug"
},
"completedAt": {
"type": "string",
"description": "ISO timestamp of completion"
},
"languages": {
"type": "array",
"items": {
"type": "string"
},
"description": "Languages used to solve"
}
}
},
"description": "List of completed challenges"
},
"totalPages": {
"type": "number",
"description": "Total number of pages"
},
"totalItems": {
"type": "number",
"description": "Total number of 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.