MCP Catalogs
Home

obsidian-mcp-server vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

obsidian-mcp-server
by cyanheads
ultimate_mcp_server
by Dicklesworthstone
Stars★ 525★ 149
30d uses
Score5285
Official
Categories
ProductivityKnowledge GraphFile System
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last committhis month2 mo ago

obsidian-mcp-server · Summary

MCP server for Obsidian vaults with 14 tools for reading, writing, searching, and editing notes, tags, and frontmatter.

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 · Use cases

  • Automating note content creation and organization based on external triggers or schedules
  • Integrating Obsidian with AI assistants for contextual note retrieval and editing
  • Building custom workflows that interact with Obsidian vaults through MCP-compatible clients

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 · Install

npm install -g obsidian-mcp-server

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "obsidian": {
      "command": "obsidian-mcp-server",
      "args": []
    }
  }
}

The server can also run via STDIO or Streamable HTTP.

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.