kakuyomu-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
kakuyomu-mcp by 106- | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingMediaProductivity | Knowledge GraphAI / 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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": {}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}