AniList MCP Server MCP Server
io.github.Grinv/anilist-mcp-server
What is the AniList MCP Server MCP server?
MCP server for the AniList GraphQL API — anime/manga search, details, and personal list management.
How to install AniList MCP Server
Copy-paste configuration for popular MCP clients.
ANILIST_CLIENT_IDOptional. From an app registered at anilist.co/settings/developer — needed to use login_anilist.
ANILIST_CLIENT_SECRETsecretOptional. Paired with the Client ID above — needed to use login_anilist.
ANILIST_ACCESS_TOKENsecretOptional. A pre-obtained AniList access token, as an alternative to running login_anilist.
ANILIST_OAUTH_PORTOptional. Localhost port for the login_anilist callback (default 8082).
ANILIST_TOKEN_STOREOptional. Overrides where the AniList access token is persisted (defaults under the OS config dir).
{
"mcpServers": {
"anilist-mcp-server": {
"command": "npx",
"args": [
"-y",
"anilist-mcp-server"
],
"env": {
"ANILIST_CLIENT_ID": "<YOUR_ANILIST_CLIENT_ID>",
"ANILIST_CLIENT_SECRET": "<YOUR_ANILIST_CLIENT_SECRET>",
"ANILIST_ACCESS_TOKEN": "<YOUR_ANILIST_ACCESS_TOKEN>",
"ANILIST_OAUTH_PORT": "<YOUR_ANILIST_OAUTH_PORT>",
"ANILIST_TOKEN_STORE": "<YOUR_ANILIST_TOKEN_STORE>"
}
}
}
}{
"mcpServers": {
"anilist-mcp-server": {
"command": "npx",
"args": [
"-y",
"anilist-mcp-server"
],
"env": {
"ANILIST_CLIENT_ID": "<YOUR_ANILIST_CLIENT_ID>",
"ANILIST_CLIENT_SECRET": "<YOUR_ANILIST_CLIENT_SECRET>",
"ANILIST_ACCESS_TOKEN": "<YOUR_ANILIST_ACCESS_TOKEN>",
"ANILIST_OAUTH_PORT": "<YOUR_ANILIST_OAUTH_PORT>",
"ANILIST_TOKEN_STORE": "<YOUR_ANILIST_TOKEN_STORE>"
}
}
}
}{
"mcpServers": {
"anilist-mcp-server": {
"command": "npx",
"args": [
"-y",
"anilist-mcp-server"
],
"env": {
"ANILIST_CLIENT_ID": "<YOUR_ANILIST_CLIENT_ID>",
"ANILIST_CLIENT_SECRET": "<YOUR_ANILIST_CLIENT_SECRET>",
"ANILIST_ACCESS_TOKEN": "<YOUR_ANILIST_ACCESS_TOKEN>",
"ANILIST_OAUTH_PORT": "<YOUR_ANILIST_OAUTH_PORT>",
"ANILIST_TOKEN_STORE": "<YOUR_ANILIST_TOKEN_STORE>"
}
}
}
}{
"servers": {
"anilist-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"anilist-mcp-server"
],
"env": {
"ANILIST_CLIENT_ID": "<YOUR_ANILIST_CLIENT_ID>",
"ANILIST_CLIENT_SECRET": "<YOUR_ANILIST_CLIENT_SECRET>",
"ANILIST_ACCESS_TOKEN": "<YOUR_ANILIST_ACCESS_TOKEN>",
"ANILIST_OAUTH_PORT": "<YOUR_ANILIST_OAUTH_PORT>",
"ANILIST_TOKEN_STORE": "<YOUR_ANILIST_TOKEN_STORE>"
}
}
}
}claude mcp add anilist-mcp-server --env ANILIST_CLIENT_ID=<YOUR_ANILIST_CLIENT_ID> --env ANILIST_CLIENT_SECRET=<YOUR_ANILIST_CLIENT_SECRET> --env ANILIST_ACCESS_TOKEN=<YOUR_ANILIST_ACCESS_TOKEN> --env ANILIST_OAUTH_PORT=<YOUR_ANILIST_OAUTH_PORT> --env ANILIST_TOKEN_STORE=<YOUR_ANILIST_TOKEN_STORE> -- npx -y anilist-mcp-serverRelated MCP servers
MAL MCP Server
MyAnimeList MCP server: Tenrai-powered reads plus official MAL personal-list management.
Steam MCP Server
Steam store/game data (no key) plus player profiles, libraries and achievements (Steam Web API).
MCP server for The Movie Database (TMDB) with IMDb/Rotten Tomatoes/Metacritic ratings via OMDb.
View repository →