everything vs wanderlog-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | wanderlog-mcp by shaikhspeare | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivitytravelAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
wanderlog-mcp · Summary
MCP server for building and editing trip itineraries in Wanderlog through natural language conversation.
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
wanderlog-mcp · Use cases
- Creating multi-day itineraries for destinations with all places, notes and accommodations
- Adding day trips or modifying existing travel plans through conversation
- Organizing travel logistics with checklists and expense tracking
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-everythingwanderlog-mcp · Install
Installation
- **Get your Wanderlog session cookie**
- Log in to [wanderlog.com](https://wanderlog.com) - Open DevTools (F12) - Go to Application/Storage tab → Cookies → find connect.sid and copy its value
- **Configure your MCP client**
**Claude Desktop**: Edit claude_desktop_config.json:
{
"mcpServers": {
"wanderlog": {
"command": "npx",
"args": ["wanderlog-mcp"],
"env": {
"WANDERLOG_COOKIE": "s%3A...your value here..."
}
}
}
}**Other clients**: See README for instructions on configuring Claude Code, Cursor, VS Code, OpenAI Codex, and Smithery.