top_anime
Pack: kitsu · Endpoint: https://gateway.pipeworx.io/kitsu/mcp
Top anime list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
by | string | no | popularityRank (default) | ratingRank |
limit | number | no |
Example call
Arguments
{
"by": "ratingRank",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/kitsu/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_anime","arguments":{"by":"ratingRank","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_anime', {
"by": "ratingRank",
"limit": 20
});
More examples
{
"limit": 10
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Kitsu JSON:API response for top anime list"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"kitsu": {
"url": "https://gateway.pipeworx.io/kitsu/mcp"
}
}
}
See Getting Started for client-specific install steps.