/ Verzeichnis / Playground / AniList MCP
● Community yuna0x0 ⚡ Sofort

AniList MCP

von yuna0x0 · yuna0x0/anilist-mcp

Search anime, manga, and characters via the AniList GraphQL API.

AniList MCP wraps the AniList GraphQL API so Claude can search anime/manga, look up characters and staff, and manage user watchlists. Useful for recommendation chatbots, anime trackers, and writers fact-checking series details.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

anilist-mcp.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "anilist-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "anilist-mcp"
      ]
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "anilist-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "anilist-mcp"
      ]
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "anilist-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "anilist-mcp"
      ]
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "anilist-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "anilist-mcp"
      ]
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "anilist-mcp",
      "command": "npx",
      "args": [
        "-y",
        "anilist-mcp"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "anilist-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "anilist-mcp"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add anilist-mcp -- npx -y anilist-mcp

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: AniList MCP

Get genre-aware anime recommendations from your AniList history

👤 Anime fans ⏱ ~15 min intermediate

Wann einsetzen: You want recs that actually respect what you've already finished.

Voraussetzungen
  • Server/skill installed and authenticated — See repo README
Ablauf
  1. Pull watch history
    Read my AniList user list (username: foobar). Group by genre and score.✓ Kopiert
    → Distribution by genre + average score per genre
  2. Recommend
    Recommend 5 highly-rated anime in my top two genres that I haven't watched yet.✓ Kopiert
    → List of 5 with titles, year, score, why-you'd-like-it

Ergebnis: Personalized recs grounded in your actual taste.

Fallstricke
  • Recommendations are LLM-generated — Recommendations are LLM-generated — verify with AniList scores; don't trust title hallucinations.
Kombinieren mit: fetch

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

anilist-mcp + fetch

Pair with fetch for complementary capabilities

Use this server together with fetch to complete a multi-step task.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
search_anime query, year, season Find anime by title or season 1 GraphQL call
search_character name Look up a character across series 1 GraphQL call
user_list username, type Read a user's public watchlist 1 GraphQL call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
See provider docs for rate limits
Tokens pro Aufruf
Varies by tool
Kosten in €
See repo README for pricing details
Tipp
Cache tool results and avoid repeated identical calls.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Use environment variables; never commit secrets
Datenabfluss: Tool calls go to the provider's API as documented

Fehlerbehebung

Häufige Fehler und Lösungen

rate limited

AniList caps unauthenticated requests at 30/min. Set ANILIST_TOKEN to raise the limit.

Prüfen: Wait 60s and retry
user not found

AniList usernames are case-sensitive. Use the exact handle from the user's profile URL.

Prüfen: Open https://anilist.co/user/<name> in a browser

Alternativen

AniList MCP vs. andere

AlternativeWann stattdessenKompromiss
MyAnimeList unofficial MCPsYou're already syncing to MALAPI is less stable than AniList's GraphQL

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen