everything vs notebooklm-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | notebooklm-mcp by roomi-fields | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
notebooklm-mcp · Summary
Google NotebookLM MCP server with HTTP API for Q&A, content generation, and multi-account rotation.
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
notebooklm-mcp · Use cases
- Automating research workflows with citation-backed answers from multiple sources
- Generating diverse content formats (audio, video, reports) from notebooks
- Integrating NotebookLM into automation pipelines via HTTP REST API
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-everythingnotebooklm-mcp · Install
Option 1 — Claude Code Marketplace (Recommended)
/plugin marketplace add roomi-fields/claude-plugins
/plugin install notebooklm@roomi-fieldsOption 2 — Manual MCP Setup
git clone https://github.com/roomi-fields/notebooklm-mcp.git
cd notebooklm-mcp
npm install && npm run build
claude mcp add notebooklm node /path/to/notebooklm-mcp/dist/index.jsOption 3 — HTTP REST API
npm install && npm run build
npm run setup-auth # One-time Google login
npm run start:http # Start REST API on port 3000