Wraps the AniList GraphQL API so you can query anime and manga data without dealing with authentication or manual GraphQL calls. Part of the Pipeworx gateway, which offers a streamable HTTP transport and an ask_pipeworx tool that lets you make plain English requests instead of structured API calls. Free to use, no API key required. Useful when you're building features around anime recommendations, tracking watch lists, or pulling metadata for media collections. The gateway approach means you can either connect to this specific AniList wrapper or tap into the full Pipeworx network for 673+ data sources through a single configuration entry.
AniList MCP — wraps AniList GraphQL API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"anilist": {
"url": "https://gateway.pipeworx.io/anilist/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Anilist data" })
The gateway picks the right tool and fills the arguments automatically.
MIT