AniList MCP
Provides AniList integration for searching titles, managing your list, updating episode progress, scoring entries, and checking currently airing episodes from your followed series.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AniList MCPWhat's airing today from my followed series?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AniList MCP (Convex)
Personal MCP server for AniList. Convex hosts the MCP at https://<deployment>.convex.site/mcp — no local Node process, no OAuth backend.
AniList only has a GraphQL endpoint (https://graphql.anilist.co) and an implicit grant: you create a client, you grab a JWT valid for one year, you store it as a Convex environment variable. That’s the single-user shortcut.
Five tools
Tool | Role |
| Searches a title, returns the AniList id and the episode count |
| Your collection, filterable by status ( |
|
|
|
|
| What’s airing this week among your followed series |
The last one uses the AniList calendar (airingAt), not a hand-maintained list. “What to watch tonight” becomes the episode that came out today.
Related MCP server: MAL User MCP Server
1. Convex
npm install
npx convex devIt creates (or links) the project on your Convex account and pushes the functions. The site’s HTTP URL appears in the dashboard (*.convex.site).
2. AniList Token (implicit grant)
anilist.co/settings/developer → Click on “Create New Client”
Redirect URL :
https://anilist.co/api/v2/oauth/pin(PIN page, no backend)Open:
https://anilist.co/api/v2/oauth/authorize?client_id=TON_CLIENT_ID&response_type=tokenCopy the JWT, then:
npx convex env set ANILIST_TOKEN 'eyJ...'
npx convex env set ANILIST_TIMEZONE Europe/ParisOptional, to lock down POST /mcp:
npx convex env set MCP_SECRET 'un-secret-long'3. Cursor
In ~/.cursor/mcp.json (or Settings → MCP):
{
"mcpServers": {
"anilist": {
"url": "https://VOTRE_DEPLOIEMENT.convex.site/mcp"
}
}
}If MCP_SECRET is set:
{
"mcpServers": {
"anilist": {
"url": "https://VOTRE_DEPLOIEMENT.convex.site/mcp",
"headers": {
"Authorization": "Bearer un-secret-long"
}
}
}
}The transport is Streamable HTTP, with no persistent session (recent spec). Convex remains the host.
Examples
“Search for Frieren” →
chercher→ id + 28 episodes“Mark episode 12 of Frieren” →
progression“Rate 85 and COMPLETED” →
noter“What’s airing tonight in my list?” →
en_cours_de_diffusion
Dev
npm test
npm run lint
npx convex dev # watch + push (dev uniquement)npx convex deploy for production only.
AniList calls are Convex actions (convex/anilist.ts). The HTTP router (convex/http.ts) translates MCP JSON-RPC → these actions.
This server cannot be deployed
Maintenance
Related MCP Connectors
Access and interact with anime and manga data seamlessly. Retrieve detailed information about your…
AniList MCP — wraps AniList GraphQL API (free, no auth)
Query your Twitch streams, events, supporters, raids & rankings from an AI assistant via OAuth.
Accurate anime-song (anison) database for AI-built playlists — export to Spotify/Apple/YT Music
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables searching and retrieving anime and manga data from Kitsu's catalogue, including top lists and categories, through natural language queries via Pipeworx gateway.2 npm1MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to interact with MyAnimeList user accounts for list management, progress tracking, and personalized anime recommendations.11-
- AlicenseAqualityAmaintenanceEnables searching and browsing anime/manga, characters, staff, and more on AniList without credentials, and with a one-time login allows managing personal lists, favorites, follows, and activity.4989 npm1MIT
- AlicenseAqualityCmaintenanceEnables AI clients to search, inspect, rank, and manage MyAnimeList anime and manga, including authenticated user list operations.15MIT