kata

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

Single kata.

Parameters

NameTypeRequiredDescription
id_or_slugstringyes

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

Response shape

FieldTypeDescription
idstringKata ID
namestringKata name
slugstringKata URL slug
descriptionstringKata description
ranknumberDifficulty rank
rankNamestringRank name (e.g., ‘8 kyu’)
createdByobject
publishedAtstringISO timestamp of publication
approvedBystring | nullApprover username
approvedDatestring | nullISO approval date
languagesarrayAvailable programming languages
tagsarrayKata tags/categories
statsobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Kata ID"
    },
    "name": {
      "type": "string",
      "description": "Kata name"
    },
    "slug": {
      "type": "string",
      "description": "Kata URL slug"
    },
    "description": {
      "type": "string",
      "description": "Kata description"
    },
    "rank": {
      "type": "number",
      "description": "Difficulty rank"
    },
    "rankName": {
      "type": "string",
      "description": "Rank name (e.g., '8 kyu')"
    },
    "createdBy": {
      "type": "object",
      "properties": {
        "username": {
          "type": "string",
          "description": "Author username"
        },
        "url": {
          "type": "string",
          "description": "Author profile URL"
        }
      }
    },
    "publishedAt": {
      "type": "string",
      "description": "ISO timestamp of publication"
    },
    "approvedBy": {
      "type": [
        "string",
        "null"
      ],
      "description": "Approver username"
    },
    "approvedDate": {
      "type": [
        "string",
        "null"
      ],
      "description": "ISO approval date"
    },
    "languages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Available programming languages"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Kata tags/categories"
    },
    "stats": {
      "type": "object",
      "properties": {
        "totalAttempts": {
          "type": "number",
          "description": "Total attempts"
        },
        "totalCompleted": {
          "type": "number",
          "description": "Total completions"
        },
        "totalStars": {
          "type": "number",
          "description": "Total stars received"
        },
        "voteScore": {
          "type": "number",
          "description": "Vote score"
        }
      }
    }
  }
}

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