top_manga
Pack: kitsu · Endpoint: https://gateway.pipeworx.io/kitsu/mcp
List top-ranked manga from Kitsu sorted by popularityRank (default) or ratingRank; returns up to 20 entries with title, rank, synopsis, and rating.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
by | string | no | |
limit | number | no |
Example call
Arguments
{
"by": "ratingRank",
"limit": 15
}
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_manga","arguments":{"by":"ratingRank","limit":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_manga', {
"by": "ratingRank",
"limit": 15
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Kitsu JSON:API response for top manga 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.