MCP Catalogs
Home

wisdomforge vs everything

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

wisdomforge
by hadv
everything
by modelcontextprotocol
Stars★ 4★ 85,748
30d uses
Score3377
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

wisdomforge · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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

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"
    }
  ]
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.