Description

Neo4j-powered task management system for LLM Agents with three-tier architecture.

Installation

npx -y atlas-mcp-server
npm install atlas-mcp-server
git clone https://github.com/cyanheads/atlas-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "atlas-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "atlas-mcp-server"
      ]
    }
  }
}