MCP Catalogs
Home

kakuyomu-mcp vs fetch

Side-by-side comparison to help you pick between these two MCP servers.

kakuyomu-mcp
by 106-
fetch
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3476
Official
Categories
Web ScrapingMediaProductivity
Web ScrapingAI / LLM ToolsProductivity
LanguagePythonTypeScript
Last commit8 mo agothis month

kakuyomu-mcp · Summary

An MCP server for accessing Japanese novel content from Kakuyomu, offering search, episode listing, and content retrieval tools.

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

kakuyomu-mcp · Use cases

  • Automatically summarize recent novels from Kakuyomu's top page
  • Analyze the writing style and plot patterns of a specific author
  • Cross-reference novel metadata across different Japanese platforms

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

kakuyomu-mcp · Install

Docker Installation (Recommended)

docker pull ubiq/kakuyomu-mcp:latest

Python Installation

git clone https://github.com/106-/kakuyomu-mcp.git
cd kakuyomu-mcp
poetry install

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "kakuyomu_mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ubiq/kakuyomu-mcp:latest"
      ],
      "env": {}
    }
  }
}

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.