user

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

User profile.

Parameters

NameTypeRequiredDescription
usernamestringyes

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

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 May 21, 2026