loading…
Search for a command to run...
loading…
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, c
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.
Local stdio MCP server for searching MangaDex, reading manga metadata, listing chapters, and exporting internal chapters to CBZ or PDF.
CBZ filesPDF filesnpm install
npm start
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"]
}
search_mangaSearch MangaDex by title.
Input:
{
"query": "berserk"
}
get_manga_detailsFetch detailed metadata and mapped external links for a manga.
Input:
{
"mangaId": "801513ba-a712-498c-8f57-cae55b38cc92"
}
get_manga_chaptersList recent English chapters for a manga.
Input:
{
"mangaId": "801513ba-a712-498c-8f57-cae55b38cc92",
"limit": 10,
"offset": 0
}
get_chapter_access_infoReturn 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_cbzExport 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_pdfExport 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_linksReturn only the external links for a manga.
Input:
{
"mangaId": "801513ba-a712-498c-8f57-cae55b38cc92"
}
npm run smoke
export_chapter_cbz only works for internal MangaDex-hosted chapters.export_chapter_pdf only works for internal MangaDex-hosted chapters.PDF export currently supports chapter pages delivered as jpg, jpeg, or png.https://api.mangadex.org.Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mangadex-mcp": {
"command": "npx",
"args": []
}
}
}