MCP Catalogs
Home

ultimate_mcp_server vs wisdomforge

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

ultimate_mcp_server
by Dicklesworthstone
wisdomforge
by hadv
Stars★ 149★ 4
30d uses
Score8533
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguagePythonTypeScript
Last commit2 mo ago12 mo ago

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.

wisdomforge · Summary

Knowledge management MCP server using Qdrant vector database for storing and retrieving domain knowledge.

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

wisdomforge · Use cases

  • Store organizational best practices and lessons learned for team access
  • Retrieve relevant domain knowledge during AI assistant conversations
  • Capture and retrieve expert insights for decision support

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

wisdomforge · Install

Installation

  1. Clone the repository:
git clone https://github.com/hadv/wisdomforge
cd wisdomforge
  1. Install dependencies:
npm install
  1. Create a .env file based on .env.example:
cp .env.example .env
  1. Configure your environment variables in .env:
DATABASE_TYPE=qdrant
COLLECTION_NAME=wisdom_collection
QDRANT_URL=https://your-qdrant-instance.example.com
QDRANT_API_KEY=your_api_key
HTTP_SERVER=true
PORT=3000
  1. Build the project:
npm run build

Claude Desktop Configuration

Add this configuration in Claude's settings:

{
  "processes": {
    "knowledge_server": {
      "command": "/path/to/wisdomforge/run-mcp.sh",
      "args": []
    }
  },
  "tools": [
    {
      "name": "store_knowledge",
      "description": "Store domain-specific knowledge in a vector database",
      "provider": "process",
      "process": "knowledge_server"
    },
    {
      "name": "retrieve_knowledge_context",
      "description": "Retrieve relevant domain knowledge from a vector database",
      "provider": "process",
      "process": "knowledge_server"
    }
  ]
}
Comparison generated from public README + GitHub signals. Last updated automatically.