AniList MCP Server is a tool that interfaces with the AniList API, allowing AI assistants to access anime, manga, character, staff, and user data from AniList through the Model Context Protocol (MCP). It enables seamless integration of AniList's extensive database into conversations with AI assistants.
The easiest way to install AniList MCP Server for Claude Desktop is through Smithery:
npx -y @smithery/cli install @yuna0x0/anilist-mcp --client claude
# For other MCP clients, you can:
# List available clients
npx -y @smithery/cli list clients
# Install to other clients
npx -y @smithery/cli install @yuna0x0/anilist-mcp --client <client_name>
An alternative installation method:
npx @michaellatman/mcp-get@latest install anilist-mcp
claude_desktop_config.json
:{
"mcpServers": {
"anilist": {
"command": "npx",
"args": ["-y", "anilist-mcp"],
"env": {
"ANILIST_TOKEN": "your_api_token"
}
}
}
}
You can remove the env
object entirely if you don't plan to use operations requiring login.
An API token is only required for operations that need login authorization.
https://anilist.co/api/v2/oauth/pin
https://anilist.co/api/v2/oauth/authorize?client_id={clientID}&response_type=token
(replace {clientID}
with your client ID)Simply ask to search for anime with specific criteria:
Can you search for anime similar to "Bocchi the Rock!"?
Ask about a specific character:
Can you tell me about the character Hitori Gotou? Use the AniList tools to find information.
Request information about studio productions:
What anime has Studio Ghibli produced? Can you list their most popular works?
If you prefer Docker, you can pull the image:
docker pull yuna0x0/anilist-mcp
Be careful with your AniList API token. Never share it publicly or commit it to version control systems.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.