anilist-mcp
by yuna0x0·★ 76·Score 45
AniList MCP server provides comprehensive anime and manga data access through search, retrieval, and management tools.
Overview
This MCP server interfaces with the AniList API to enable LLM clients to access anime, manga, character, staff, and user data. It offers both STDIO and HTTP transport modes with flexible configuration options including API token authentication. The server provides extensive tools for searching, retrieving detailed information, managing user lists, and performing various anime-related operations.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server if you need to access or interact with AniList anime and manga data through an MCP interface, especially if you want both local and deployment options.
When NOT to choose this
Don't choose this if you need access to anime data from other platforms like MyAnimeList, or if you require write access to AniList but cannot obtain an API token.
Tools this server exposes
12 tools extracted from the READMEget_genresGet all available genres on AniList
search_animeSearch for anime with query term and filters
get_animeGet detailed information about an anime by its AniList ID
get_characterGet information about a character by their AniList ID
get_user_profileGet a user's AniList profile
get_user_anime_listGet a user's anime list
search_characterSearch for characters based on a query term
get_staffGet information about staff member by their AniList ID
search_studioSearch for studios based on a query term
get_studioGet information about a studio by its AniList ID or name
get_activityGet a specific AniList activity by its ID
get_recommendationGet an AniList recommendation by its ID
Comparable tools
Installation
Local Installation (STDIO Transport)
- Add this server to your
mcp.json/claude_desktop_config.json:
{
"mcpServers": {
"anilist": {
"command": "npx",
"args": ["-y", "anilist-mcp"],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}- Restart your MCP client (e.g., Claude Desktop)
- Use the tools to interact with AniList
FAQ
- Do I need an API token to use this server?
- An API token is optional. It's only required for operations that require login, such as modifying lists, favoriting content, or posting activities.
- Can I self-host this MCP server?
- Yes, the server supports HTTP transport for self-hosting. You can run it locally with 'pnpm run start:http' or deploy it to any cloud platform that supports Node.js server applications.
Compare anilist-mcp with
Last updated · Auto-generated from public README + GitHub signals.