obsidian-cli-rest vs everything
Side-by-side comparison to help you pick between these two MCP servers.
obsidian-cli-rest by dsebastien | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 14 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | ProductivityKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
obsidian-cli-rest · Summary
Turns Obsidian CLI commands into an HTTP API and MCP server for automation and AI assistant integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
obsidian-cli-rest · Use cases
- Automate note creation and modification from scripts or applications
- Enable AI assistants like Claude or ChatGPT to interact with Obsidian vaults
- Integrate Obsidian with existing workflows via standard HTTP requests
- Programmatically manage Obsidian plugins, themes, and workspaces
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
obsidian-cli-rest · Install
Installation
- In Obsidian, go to **Settings → Community plugins**
- Disable **Restricted mode** if enabled
- Search for **REST and MCP server**, install and enable it
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"obsidian": {
"command": "http",
"args": ["http://127.0.0.1:27124/mcp"],
"env": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Configuration
- Copy your API key from **Settings > REST and MCP server > Security**
- The server starts automatically on port 27124
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