user

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

Fetch a Codewars user’s public profile by username: honor, clan, leaderboard rank, overall language ranks, and skills.

Parameters

NameTypeRequiredDescription
usernamestringyes

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
usernamestringCodewars username
namestringUser’s display name
honornumberUser’s honor points
clanstringUser’s clan name
leaderboard_positionnumber | nullPosition on leaderboard
skillsarrayList of programming skills
ranksobject
code_challengesobject
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.

Regenerated from source · build July 6, 2026