user_completed

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

List completed kata (coding challenges) for a Codewars username, paginated; returns kata ID, slug, name, completion time, and languages used.

Parameters

NameTypeRequiredDescription
usernamestringyes
pagenumberno

Example call

Arguments

{
  "username": "codewars_user"
}

curl

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":{"username":"codewars_user"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('user_completed', {
  "username": "codewars_user"
});

More examples

{
  "username": "codewars_user",
  "page": 2
}

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 July 6, 2026