list_categories
Pack: chucknorris · Endpoint: https://gateway.pipeworx.io/chucknorris/mcp
List all available Chuck Norris joke categories (e.g., ‘nerdy’, ‘sport’). Use with joke_by_category to fetch jokes.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/chucknorris/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_categories","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_categories', {});
Response shape
Always returns: categories
| Field | Type | Description |
|---|---|---|
categories | array | Available joke categories |
Full JSON Schema
{
"type": "object",
"properties": {
"categories": {
"type": "array",
"items": {
"type": "string"
},
"description": "Available joke categories"
}
},
"required": [
"categories"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"chucknorris": {
"url": "https://gateway.pipeworx.io/chucknorris/mcp"
}
}
}
See Getting Started for client-specific install steps.