mcp-logseq vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-logseq by ergut | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 267 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-logseq · Summary
An MCP server connecting Claude to LogSeq knowledge bases with read/write capabilities and optional vector search.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-logseq · Use cases
- Automate knowledge organization by creating summaries from recent notes and project updates
- Enhance research capabilities with cross-language semantic search across knowledge bases
- Streamline documentation workflows by generating meeting notes and task pages from existing content
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
mcp-logseq · Install
Step 1: Enable LogSeq API
- **Settings** → **Features** → Check "Enable HTTP APIs server"
- Click the **API button (🔌)** in LogSeq → **"Start server"**
- **Generate API token**: API panel → "Authorization tokens" → Create new
Step 2: Add to Claude (No Installation Required!)
Claude Desktop
Add to your config file (Settings → Developer → Edit Config):
{
"mcpServers": {
"mcp-logseq": {
"command": "uv",
"args": ["run", "--with", "mcp-logseq", "mcp-logseq"],
"env": {
"LOGSEQ_API_TOKEN": "your_token_here",
"LOGSEQ_API_URL": "http://localhost:12315"
}
}
}
}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-everything