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 | — | — |
| Score | 34 | 76 |
| Official | — | ✓ |
| Categories | Web ScrapingMediaProductivity | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this 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:latestPython Installation
git clone https://github.com/106-/kakuyomu-mcp.git
cd kakuyomu-mcp
poetry installClaude 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-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}