everything vs ebook-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ebook-mcp by onebirdrocks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 366 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ebook-mcp · Summary
A Python MCP server for processing EPUB and PDF files with natural language queries.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
ebook-mcp · Use cases
- Smart library management with natural language queries to find books by topic
- Interactive reading experience with AI-powered conversations about book content
- Active learning support through quizzes and exercises based on book material
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingebook-mcp · Install
# Clone the repository
git clone https://github.com/onebirdrocks/ebook-mcp.git
cd ebook-mcp
# Install dependencies using uv
uv pip install -e .
# Start the MCP server in development mode
uv run mcp dev src/ebook_mcp/main.py
# Or start in production mode
uv run src/ebook_mcp/main.pyFor Claude Desktop configuration:
{
"ebook-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/ebook-mcp/src/ebook_mcp/",
"run",
"main.py"
]
}
}