Skip to main content
Glama
JunnB

AniList MCP

by JunnB

AniList MCP (Convex)

AniList 用の個人 MCP サーバー。Convex が MCP を公開します:https://<déploiement>.convex.site/mcp — ローカルの Node プロセスも、OAuth バックエンドも不要です。

AniList は GraphQL エンドポイントを1つだけ持ち(https://graphql.anilist.co)、implicit grant を使います。クライアントを作成し、1年間有効な JWT を取得して、それを Convex の環境変数に設定するだけ。単一ユーザー向けのショートカットです。

5つのツール

ツール

役割

chercher

タイトルを検索し、AniList ID とエピソード数を返す

ma_liste

自分のコレクション。ステータス(CURRENTPLANNING、…)で絞り込み可能

progression

progress 付きの SaveMediaListEntry — 観終わったばかりのエピソード

noter

scorestatus 付きの SaveMediaListEntry

en_cours_de_diffusion

フォロー中シリーズのうち、今週放送されるもの

最後のツールは、手動リストではなく AniList のカレンダー(airingAt)を使います。「今夜観るもの」が「今日放送されたエピソード」になります。

Related MCP server: MAL User MCP Server

1. Convex

npm install
npx convex dev

これで、プロジェクトがあなたの Convex アカウントに作成(または接続)され、関数がデプロイされます。サイトの HTTP URL はダッシュボード(*.convex.site)に表示されます。

2. AniList トークン(implicit grant)

  1. anilist.co/settings/developer → Create New Client

  2. Redirect URLhttps://anilist.co/api/v2/oauth/pin(PIN ページ、バックエンドなし)

  3. 開く:

https://anilist.co/api/v2/oauth/authorize?client_id=TON_CLIENT_ID&response_type=token
  1. JWT をコピーし、次に:

npx convex env set ANILIST_TOKEN 'eyJ...'
npx convex env set ANILIST_TIMEZONE Europe/Paris

オプション:POST /mcp をロックする場合:

npx convex env set MCP_SECRET 'un-secret-long'

3. Cursor

~/.cursor/mcp.json(または Settings → MCP)内:

{
  "mcpServers": {
    "anilist": {
      "url": "https://VOTRE_DEPLOIEMENT.convex.site/mcp"
    }
  }
}

MCP_SECRET が設定されている場合:

{
  "mcpServers": {
    "anilist": {
      "url": "https://VOTRE_DEPLOIEMENT.convex.site/mcp",
      "headers": {
        "Authorization": "Bearer un-secret-long"
      }
    }
  }
}

トランスポートは Streamable HTTP で、永続セッションはありません(最新仕様)。ホストは Convex のままです。

  • 「Frieren を検索」 → chercher → ID + 28 話

  • 「Frieren の第12話を記録」 → progression

  • 「85 と COMPLETED にする」 → noter

  • 「今夜、マイリストに何が放送される?」 → en_cours_de_diffusion

開発

npm test
npm run lint
npx convex dev          # watch + push (dev uniquement)

npx convex deploy は本番のみに使用。

AniList への呼び出しは Convex の actionsconvex/anilist.ts)です。HTTP ルーター(convex/http.ts)が MCP の JSON-RPC を、これらのアクションへ変換します。

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and retrieving anime and manga data from Kitsu's catalogue, including top lists and categories, through natural language queries via Pipeworx gateway.
    10
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    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.
    49
    231
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server for anime and manga discovery, enabling search, detail retrieval, franchise watch order, seasonal schedule, character lookups, rankings, and studio filmography via natural language.
    65
    1
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Access and interact with anime and manga data seamlessly. Retrieve detailed information about your…

  • AniList MCP — wraps AniList GraphQL API (free, no auth)

  • Manage projects, tasks, time tracking, and team collaboration through natural language.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/JunnB/anilist-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server