npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

jikan-anime-mcp-server

v1.0.1

Published

MCP server for the Jikan API - Unofficial MyAnimeList REST API for anime, manga, characters & more

Readme

jikan-anime-mcp-server

Repository: https://github.com/lakshya4568/jikan-anime-mcp-server

TypeScript MCP (Model Context Protocol) server for the Jikan API (unofficial MyAnimeList REST API).

This server is read-only and does not require an API key.

Quick Setup

1) Clone and build

git clone https://github.com/lakshya4568/jikan-anime-mcp-server.git
cd jikan-anime-mcp-server
npm install
npm run build

2) Add to your MCP JSON config file

Use the absolute path to dist/index.js from your machine.

{
  "mcpServers": {
    "jikan-anime": {
      "command": "node",
      "args": ["/absolute/path/to/jikan-anime-mcp-server/dist/index.js"]
    }
  }
}

2b) Connect through npx (no local clone path needed)

RECOMMENDED for ease of use and integration in MCP clients without local file dependencies.

If you prefer running from npm directly in Claude Code, VS Code, or other MCP clients, use:

{
  "mcpServers": {
    "jikan-anime": {
      "command": "npx",
      "args": ["-y", "jikan-anime-mcp-server"]
    }
  }
}

The -y flag auto-confirms npm prompts so the MCP client can start the server without interaction.

3) Use in Claude Code, VS Code, or any MCP client

  • Claude Code: paste the block into Claude Code MCP JSON config.
  • VS Code: paste the block into your MCP/agent client JSON config used by your extension.
  • Any MCP client agent: paste the same block into that client MCP servers config.

If your client supports environment variables in MCP config, you can also set:

  • TRANSPORT=stdio (default)

What This Server Does

  • Exposes 26 MCP tools for anime, manga, people, discovery, and recommendation workflows.
  • Returns structured, read-only data from Jikan endpoints.
  • Supports MCP stdio transport for agent integrations.

Tool Details

Anime Tools

  • anime_search: Search anime with filters such as type, status, rating, score, genres, and sorting.
  • anime_get_by_id: Fetch complete details for a specific anime by MAL ID.
  • anime_get_characters: Fetch anime cast with character and voice actor information.
  • anime_get_episodes: Fetch paginated episode list with episode metadata.
  • anime_get_reviews: Fetch community reviews for an anime.
  • anime_get_recommendations: Fetch recommendation entries related to an anime.

Character and People Tools

  • characters_search: Search characters by name.
  • characters_get_by_id: Fetch full character profile by MAL ID.
  • people_search: Search people such as voice actors and staff.
  • people_get_by_id: Fetch full person profile and related credits by MAL ID.

Discovery Tools

  • anime_season_now: List currently airing seasonal anime.
  • anime_season_upcoming: List upcoming season anime.
  • anime_season_archive: List anime for a specific year and season.
  • anime_top: List top anime with optional filters.
  • anime_schedule: List scheduled anime for a selected day.
  • anime_random: Fetch one random anime entry.
  • manga_top: List top manga with optional filters.
  • manga_random: Fetch one random manga entry.

Manga Tools

  • manga_search: Search manga with filters such as type, status, score, and genres.
  • manga_get_by_id: Fetch complete details for a specific manga by MAL ID.

Custom Utility Tools

  • genres_list: Return genre names and IDs for anime and manga filters.
  • anime_compare: Compare two anime side-by-side by MAL IDs.
  • anime_recommend_by_preferences: Return recommendations from preference inputs (genre, score, type, era).
  • anime_get_streaming: Return available streaming platform links for an anime.
  • anime_get_stats: Return anime statistics such as score and watching distribution.
  • anime_get_news: Return recent news items related to an anime.

What This Server Does Not Do

  • Does not write to MyAnimeList or perform account actions.
  • Does not bypass Jikan availability constraints or upstream limits.
  • Does not require OAuth or user login.

License

MIT