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 | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 12 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
- 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_serverwisdomforge · Install
Installation
- Clone the repository:
git clone https://github.com/hadv/wisdomforge
cd wisdomforge- Install dependencies:
npm install- Create a
.envfile based on.env.example:
cp .env.example .env- 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- Build the project:
npm run buildClaude 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"
}
]
}