kata
Pack: codewars · Endpoint: https://gateway.pipeworx.io/codewars/mcp
Single kata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id_or_slug | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | Kata ID |
name | string | Kata name |
slug | string | Kata URL slug |
description | string | Kata description |
rank | number | Difficulty rank |
rankName | string | Rank name (e.g., ‘8 kyu’) |
createdBy | object | |
publishedAt | string | ISO timestamp of publication |
approvedBy | string | null | Approver username |
approvedDate | string | null | ISO approval date |
languages | array | Available programming languages |
tags | array | Kata tags/categories |
stats | object |
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.