AniList MCP is a Model Context Protocol (MCP) server that interfaces with the AniList API, enabling LLM clients to access and interact with anime, manga, character, staff, and user data from AniList.
To use AniList MCP, clone the repository, install dependencies, and start the server. You can also configure an optional AniList API token for authenticated operations.
Use these steps to connect AniList in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"anilist-yuna0x0": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"anilist-yuna0x0": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"anilist-yuna0x0": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"anilist-yuna0x0": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"anilist-yuna0x0": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"anilist-yuna0x0": {
"command": "npx",
"args": [
"-y",
"anilist-mcp"
],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}It allows developers to interact with the AniList API and access various data related to anime and manga.
An API token is optional but recommended for accessing personal favorites and user-specific data.
You can use the MCP Inspector to test and debug the server, providing a user-friendly interface for interaction.