top_anime

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

Top anime list.

Parameters

NameTypeRequiredDescription
bystringnopopularityRank (default) | ratingRank
limitnumberno

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.

Regenerated from source · build July 6, 2026