user_completed

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

Completed challenges.

Parameters

NameTypeRequiredDescription
usernamestringyes
pagenumberno

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

FieldTypeDescription
dataarrayList of completed challenges
totalPagesnumberTotal number of pages
totalItemsnumberTotal 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.

Regenerated from source · build May 21, 2026