MCP Catalogs
Home

wisdomforge vs filesystem

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

wisdomforge
by hadv
filesystem
by modelcontextprotocol
Stars★ 4★ 85,748
30d uses
Score3377
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

wisdomforge · Summary

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.