1. Conduid
  2. Blockchain
  3. mangadex-mcp
MCP server · Blockchain

mangadex-mcp

An MCP server for interacting with MangaDex to search manga, fetch metadata, and export chapters to CBZ or PDF formats. It provides tools for manga discovery, chapter management, and local file export capabilities.

Unclaimed blockchain
34Low

Scored 4 months ago · breakdown

About mangadex-mcp

mangadex-mcp is an MCP server in the Blockchain category: an MCP server for interacting with MangaDex to search manga, fetch metadata, and export chapters to CBZ or PDF formats. It provides tools for manga discovery, chapter management, and local file export capabilities. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/kenhendricks00/mangadex-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about mangadex-mcp

Powered by Claude · Grounded in docs

I know everything about mangadex-mcp. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

mangadex-mcp

Local stdio MCP server for searching MangaDex, reading manga metadata, listing chapters, and exporting internal chapters to CBZ or PDF.

Features

  • Search MangaDex titles by name
  • Fetch manga metadata and external links
  • List recent English chapters for a manga
  • Return chapter-level reader access info
  • Export internal MangaDex chapters to local CBZ files
  • Export internal MangaDex chapters to local PDF files

Requirements

  • Node.js 20+
  • npm

Install

npm install

Run

npm start

MCP Launch

This server uses the MCP stdio transport and is intended to be spawned locally by an MCP client.

Example:

{
  "command": "node",
  "args": ["C:\\Users\\[NAME]\\mangadex-mcp\\src\\index.js"]
}

Tools

search_manga

Search MangaDex by title.

Input:

{
  "query": "berserk"
}

get_manga_details

Fetch detailed metadata and mapped external links for a manga.

Input:

{
  "mangaId": "801513ba-a712-498c-8f57-cae55b38cc92"
}

get_manga_chapters

List recent English chapters for a manga.

Input:

{
  "mangaId": "801513ba-a712-498c-8f57-cae55b38cc92",
  "limit": 10,
  "offset": 0
}

get_chapter_access_info

Return chapter-level access info. For internal MangaDex chapters this points to the MangaDex reader. For external-hosted chapters this returns the external reader URL. MangaDex does not expose PDF/CBZ download URLs through this API.

Input:

{
  "chapterId": "8ceadc31-e41e-4038-8aef-d002aab344a5"
}

export_chapter_cbz

Export an internal MangaDex chapter to a local CBZ file. The tool result also includes a resource_link block pointing at the exported file.

Input:

{
  "chapterId": "8ceadc31-e41e-4038-8aef-d002aab344a5",
  "quality": "data-saver",
  "outputDir": "exports/chapters"
}

export_chapter_pdf

Export an internal MangaDex chapter to a local PDF file. The tool result also includes a resource_link block pointing at the exported file.

Input:

{
  "chapterId": "8ceadc31-e41e-4038-8aef-d002aab344a5",
  "quality": "data-saver",
  "outputDir": "exports/chapters"
}

get_manga_external_links

Return only the external links for a manga.

Input:

{
  "mangaId": "801513ba-a712-498c-8f57-cae55b38cc92"
}

Local Verification

npm run smoke

Notes

  • export_chapter_cbz only works for internal MangaDex-hosted chapters.
  • export_chapter_pdf only works for internal MangaDex-hosted chapters.
  • External chapters such as MangaPlus links cannot be exported through MangaDex.
  • PDF export currently supports chapter pages delivered as jpg, jpeg, or png.
  • The server makes live requests to https://api.mangadex.org.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About mangadex-mcp

How do I install mangadex-mcp?

Run git clone https://github.com/kenhendricks00/mangadex-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is mangadex-mcp safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is mangadex-mcp still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.