top_anime

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

Kitsu anime and manga database — the highest-ranked anime on Kitsu, ordered by popularityRank (default) or ratingRank, up to 20 entries. Each entry returns the Kitsu anime id, titles, both rank positions, average rating, episode count and synopsis. Answers which anime are most popular or highest rated according to Kitsu.

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 August 21, 2026