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.
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
CBZfiles - Export internal MangaDex chapters to local
PDFfiles
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_cbzonly works for internal MangaDex-hosted chapters.export_chapter_pdfonly works for internal MangaDex-hosted chapters.- External chapters such as MangaPlus links cannot be exported through MangaDex.
PDFexport currently supports chapter pages delivered asjpg,jpeg, orpng.- The server makes live requests to
https://api.mangadex.org.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.