Skip to main content
Glama
danielsuguimoto

myanimelist-mcp-server

myanimelist-mcp-server

An MCP (Model Context Protocol) server for the MyAnimeList API v2, designed to be deployed on Cloudflare Workers.

It exposes the MyAnimeList public API as a set of MCP tools that any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) can call.

Authentication

No env vars or secrets needed. Pass your MAL Client ID as a Bearer token:

Authorization: Bearer <your_mal_client_id>

Register your application at https://myanimelist.net/apiconfig to obtain a Client ID.

Related MCP server: MyAnimeList MCP Server

Setup

npm install

Local development

npm run dev

Deploy to Cloudflare Workers

npm run deploy

No secrets to set — the Client ID is provided per-request by the MCP client.

Connecting an MCP client

Point your MCP client at the /mcp route using the Streamable HTTP transport, with your MAL Client ID as the Bearer token:

{
  "mcpServers": {
    "myanimelist": {
      "url": "https://myanimelist-mcp-server.<your-subdomain>.workers.dev/mcp",
      "headers": {
        "Authorization": "Bearer <your_mal_client_id>"
      }
    }
  }
}

Available tools

Anime (5)

Tool

Description

search_anime

Search anime by keyword.

get_anime_details

Get details for an anime by ID.

get_anime_ranking

Get a ranked anime list by type.

get_seasonal_anime

Get anime for a season/year.

get_user_anime_list

Get a user's anime list by user name.

Manga (4)

Tool

Description

search_manga

Search manga by keyword.

get_manga_details

Get details for a manga by ID.

get_manga_ranking

Get a ranked manga list by type.

get_user_manga_list

Get a user's manga list by user name.

Forum (3)

Tool

Description

get_forum_boards

List forum boards and sub-boards.

get_forum_topic

Get a forum topic's details and posts.

get_forum_topics

Search forum topics.

Project structure

src/
  index.ts          Worker entry: /mcp route, Bearer token auth
  mal-client.ts     MyAnimeList API client (headers, error handling)
  types.ts          Enum constants
  tools/
    anime.ts        5 anime tools
    manga.ts        4 manga tools
    forum.ts        3 forum tools

Scripts

Command

Description

npm run dev

Start the local Wrangler dev server.

npm run deploy

Deploy to Cloudflare Workers.

npm run typecheck

Run the TypeScript type checker.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server that provides access to MyAnimeList's API for anime and manga data. It enables users to search, view rankings, manage their personal lists, and get recommendations through Claude and other MCP clients.
    76 npm
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Exposes a user's MyAnimeList data (watch list, scores, statistics) as MCP tools for AI assistants to analyze taste, build statistics, and make recommendations.
    20
    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.
    78 npm
    1
    Apache 2.0