ultimate_mcp_server vs obsidian-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | obsidian-mcp-server by smith-and-web | |
|---|---|---|
| Stars | ★ 149 | ★ 15 |
| 30d uses | — | — |
| Score | 85 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | File SystemAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
obsidian-mcp-server · Summary
MCP server enabling AI assistants to manage Obsidian vaults with comprehensive note, tag, and search operations.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
obsidian-mcp-server · Use cases
- AI assistants retrieving and updating personal notes and knowledge bases
- Automating organization and tagging of markdown documentation
- Searching across large vaults of personal knowledge with AI-powered queries
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverobsidian-mcp-server · Install
Installation
**Quick start with npx:**
VAULT_PATH=/path/to/your/vault npx @smith-and-web/obsidian-mcp-server**Docker deployment:**
docker run -d \
--name obsidian-mcp \
-v /path/to/your/vault:/vault:rw \
-p 3001:3000 \
-e VAULT_PATH=/vault \
ghcr.io/smith-and-web/obsidian-mcp-server:latest**Claude Desktop configuration:**
{
"mcpServers": {
"obsidian": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:3001/sse"]
}
}
}