AniList MCP Server

AniList MCP Server

Enables 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.

Category
访问服务器

README

AniList MCP Server

npm version CI license: MIT MCP Registry anilist-mcp-server MCP server

An MCP server for AniList. It works with any MCP-compatible client or agent (Claude Desktop/Code, Cursor, VS Code, Cline, Continue, and others) — the server speaks the standard MCP stdio protocol.

What it does

Talks directly to AniList's public GraphQL API (https://graphql.anilist.co):

  • Reads — no credentials needed. Search and browse anime/manga, characters, staff, studios; genres/tags; recommendations; forum threads; activity feeds; public/unlisted user profiles and lists.
  • Your own AniList account — requires a one-time login. Manage your own anime/manga list (add/update/remove entries), favourites, follows, your notifications, and post/delete your own activity and threads.

What you need (and what it gets you)

Nothing is required to get started — you can skip straight to Install. Everything below is optional:

You set... You get...
(nothing) Search, details, genres/tags, recommendations, threads, activity, public profiles/lists — works immediately.
An AniList Client ID + Client Secret (2 minutes, free →), plus running login_anilist once Everything above, plus your own AniList account: manage your list, favourites, follows, activity, and threads.

Without a login, the personal/mutation tools reply with a clear message telling you how to get one — everything else keeps working regardless.

Example queries

Once it's connected, just ask your agent in natural language.

No credentials needed:

"Search for the anime Frieren and show its score, genres and synopsis."
"What recommendations does AniList have for fans of Steins;Gate?"
"Show me today's birthday characters."
"What genres and tags does AniList use for anime?"
"Show the public profile and stats for user <username>."
"What's in <username>'s AniList anime list marked as watching?"

With your AniList account (after a one-time login_anilist; see Connect your AniList account):

"Add Frieren to my AniList plan-to-watch list."
"Set Cowboy Bebop to completed on my AniList with a score of 9."
"Follow user <username> for me."
"Post a text update to my AniList activity feed."
"What are my unread AniList notifications?"

Tools

Tool Auth
get_genres, get_media_tags, get_site_statistics, get_studio none
get_media, get_media_statistics, get_media_characters, get_media_staff none
get_media_reviews, get_media_relations, get_anime_schedule none
get_character, get_staff, get_todays_birthdays none
get_recommendation, get_recommendations_for_media none
search_media, search_character, search_staff, search_studio, search_user, search_activity none
search_thread, get_thread, get_thread_comments none
get_user_profile, get_user_stats, get_full_user_info, get_user_recent_activity none
get_activity, get_user_activity none
get_user_list none
favourite token
add_list_entry, update_list_entry, remove_list_entry token
post_text_activity, post_message_activity, delete_activity token
post_thread, post_thread_comment, delete_thread, delete_thread_comment token
get_authorized_user, follow_user, update_user token
get_notifications token
login_anilist, submit_anilist_redirect login

token = needs an AniList login (run login_anilist once).

Prompts

Reusable multi-step plans your client can offer as one-click flows: recommend_similar, seasonal_overview, hidden_gems, catch_up_activity, check_notifications.

Install

As an .mcpb bundle (one-click, e.g. Claude Desktop)

Download anilist-mcp-server.mcpb (always the latest release) and open it with your MCP client. It prompts for an optional AniList Client ID and Client Secret — set them and run the login_anilist tool to enable the personal-list/social tools (see Connect your AniList account). Leave them blank to use just the credential-free read tools.

Via npx (no install)

Published on npm as anilist-mcp-server. Add it to your client's MCP config (Claude Desktop/Code, Cursor, VS Code, Cline, …):

{
  "mcpServers": {
    "anilist": {
      "command": "npx",
      "args": ["-y", "anilist-mcp-server"],
      "env": {
        "ANILIST_CLIENT_ID": "...",
        "ANILIST_CLIENT_SECRET": "..."
      }
    }
  }
}

Or with the Claude Code CLI:

claude mcp add anilist -e ANILIST_CLIENT_ID=... -e ANILIST_CLIENT_SECRET=... -- npx -y anilist-mcp-server

From source

git clone https://github.com/Grinv/anilist-mcp-server
cd anilist-mcp-server
npm ci
npm run build

This produces a self-contained dist/index.js. Point your client at it the same way as above, swapping "command": "npx", "args": ["-y", "anilist-mcp-server"] for "command": "node", "args": ["/absolute/path/to/anilist-mcp-server/dist/index.js"] (and npx -y anilist-mcp-server for node /absolute/path/to/anilist-mcp-server/dist/index.js in the CLI form).

The env block (shown above for both install methods) is optional — omit it to use only the credential-free read tools; the personal/mutation tools will return a clear error until you log in. To enable them, set ANILIST_CLIENT_ID + ANILIST_CLIENT_SECRET and run the login_anilist tool once (a one-time browser authorization; the token is then stored and reused). The server does not read a .env file, so pass config via this env block (or your shell environment). See docs/auth.md for the full login walkthrough and docs/clients.md for more clients.

Connect your AniList account

The search/browse tools work with no setup. To use the personal/mutation tools, authorize your account once. It takes about two minutes.

Step 1 — Register an AniList app (one minute).

  1. Go to https://anilist.co/settings/developer and click Create New Client.
  2. Name: anything.
  3. Redirect URL: enter exactly
    http://localhost:8082/callback
    
    (If port 8082 is already used on your machine, pick another port here and set ANILIST_OAUTH_PORT to the same number — see Configuration.)
  4. Save. Copy the Client ID and Client Secret.

Step 2 — Give the credentials to the server.

"env": { "ANILIST_CLIENT_ID": "...", "ANILIST_CLIENT_SECRET": "..." }

Restart the server/client so it picks up the values.

Step 3 — Log in (one click).

In your assistant, run the login_anilist tool (or just say "log in to AniList"). It replies with a link. Open the link, sign in to AniList, and click Approve.

  • Running locally (Claude Desktop, or Claude Code on your own machine): login finishes automatically the moment you click Approve. Confirm with "show my AniList profile" (get_authorized_user).
  • Running on a remote/SSH/headless host: after clicking Approve your browser lands on a page that won't load — that's expected. Copy the full address from the browser's address bar (it contains ?code=…) and give it to the submit_anilist_redirect tool to finish.

That's it. The token is saved locally (~/.config/anilist-mcp-server/tokens.json, 0600). AniList access tokens don't expire for about a year and there's no refresh mechanism — you'll need to run login_anilist again once it does.

Prefer no interactive step? Pre-set a standalone ANILIST_ACCESS_TOKEN instead. See docs/auth.md.

Configuration

All configuration is via environment variables, all optional — without credentials the read tools still work.

Variable Purpose
ANILIST_CLIENT_ID Your AniList app's Client ID — see Connect your AniList account.
ANILIST_CLIENT_SECRET Your AniList app's Client Secret, paired with the Client ID above.
ANILIST_ACCESS_TOKEN Advanced, optional. Pre-supply a token instead of running login_anilist. See docs/auth.md.
ANILIST_TOKEN_STORE Override where the login token is saved on disk (default: your OS's config folder).
ANILIST_OAUTH_PORT Only needed if port 8082 is already in use — see step 1 of the account walkthrough.
LOG_LEVEL How much the server logs: debug | info | warn | error | silent (default info).

Tuning (rarely needed)

Variable Purpose
ANILIST_MIN_INTERVAL_MS Min spacing between AniList calls (default 2100, i.e. ~30/min — AniList's API is currently in a documented degraded state; see docs/api-references.md). Set to 0 to disable client-side throttling.
CACHE_TTL_MS TTL for the in-memory read cache (default 300000 = 5 min).
HTTP_TIMEOUT_MS, HTTP_RETRIES Per-request timeout (default 15000) and retry attempts for transient failures (default 2).
ANILIST_GRAPHQL_URL, ANILIST_OAUTH_BASE_URL Override upstream base URLs.

Provide these in your MCP client config's env block (the server does not read a .env file). See docs/auth.md for how to obtain the credentials, and docs/clients.md for client configuration snippets.

NSFW content

NSFW (adult) results are not filtered by default — the server returns whatever AniList provides. search_media accepts an optional sfw parameter; set sfw: true to exclude adult entries.

Development

npm run build        # type-check + bundle to dist/
npm test             # node:test suite (mocked, offline)
npm run test:coverage
npm run lint
npm run format
npm run check:api    # live health-check of the AniList GraphQL endpoint
npm run inspector    # run under the MCP Inspector

Runtime requires Node ≥ 20. See AGENTS.md for contributor/agent guidance, including why this server exists and how it avoids the upstream bug that motivated building it.

Updating

To be notified of new versions, click Watch → Releases on GitHub.

  • .mcpb bundle: download the new anilist-mcp-server.mcpb from the releases page and reinstall it in your client (it replaces the old version).
  • npx: unpinned npx -y anilist-mcp-server fetches the latest on the next run.
  • From source: git pull && npm ci && npm run build.

See the CHANGELOG for what changed in each release.

Attribution and terms

This is an unofficial project and is not affiliated with or endorsed by AniList. All data comes from the public AniList GraphQL API; personal-account operations use your own AniList account and token. Use is subject to AniList's Terms of Service.

License

MIT © Grinv

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选