kakuyomu-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
kakuyomu-mcp by 106- | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 2 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 34 | 84 |
| Official | — | — |
| Categories | Web ScrapingMediaProductivity | AI / LLM ToolsDeveloper 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.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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": {}
}
}
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}