What is the AniList MCP server?
AniList MCP server for accessing AniList API data
How to install AniList
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
ANILIST_TOKENsecretAniList API token for authenticated requests
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"anilist-mcp": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "<YOUR_ANILIST_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"anilist-mcp": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "<YOUR_ANILIST_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"anilist-mcp": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "<YOUR_ANILIST_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"anilist-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "<YOUR_ANILIST_TOKEN>"
}
}
}
}Claude Code
claude mcp add anilist-mcp --env ANILIST_TOKEN=<YOUR_ANILIST_TOKEN> -- npx -y anilist-mcpRelated MCP servers
A Model Context Protocol server for integrating HackMD's note-taking platform with AI assistants.
View repository →