cognee-mcp-server

JeromyJSmith/cognee-mcp-server

3.2

If you are the rightful owner of cognee-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Cognee MCP server is a project designed to facilitate the integration of model context protocol servers with various platforms, providing a seamless environment for managing and deploying machine learning models.

cognee MCP server

Installing Manually

A MCP server project

  1. Clone the repo

  2. Install dependencies

pip install uv
brew install postgresql
brew install rust
cd cognee-mcp
uv sync --dev --all-extras
  1. Activate the venv with
source .venv/bin/activate
  1. Add the new server to your Claude config:

The file should be located here: ~/Library/Application\ Support/Claude/ You need to create claude_desktop_config.json in this folder if it doesn't exist



{
	"mcpServers": {
		"cognee": {
			"command": "/Users/{user}/cognee/.venv/bin/uv",
			"args": [
        "--directory",
        "/Users/{user}/cognee/cognee-mcp",
        "run",
        "cognee"
      ],
      "env": {
        "ENV": "local",
        "TOKENIZERS_PARALLELISM": "false",
        "LLM_API_KEY": "sk-"
      }
		},
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Users/{user}/Desktop",
        "/Users/{user}/Projects"
      ]
    }
	}
}

Restart your Claude desktop.

Installing via Smithery

To install Cognee for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install cognee --client claude

Define cognify tool in server.py Restart your Claude desktop.