ATLAS is a powerful project, knowledge, and task management system designed for LLM Agents. It implements the Model Context Protocol (MCP) to enable AI models to interact with a project management database, managing projects, tasks, and knowledge items through a structured system built on a Neo4j graph database.
Clone the repository:
git clone https://github.com/cyanheads/atlas-mcp-server.git
cd atlas-mcp-server
Install dependencies:
npm install
Configure Neo4j: Start a Neo4j instance using the provided Docker configuration:
docker-compose up -d
Update your .env
file with Neo4j connection details.
Build the project:
npm run build
ATLAS MCP Server supports multiple transport mechanisms:
This is the default mode, typically used for direct integration with local MCP clients:
npm run start:stdio
This mode allows the server to listen for MCP requests over HTTP:
npm run start:http
The server will listen on the host and port defined in your .env
file (default: 127.0.0.1:3010
).
A basic experimental Web UI is available for viewing Project, Task, & Knowledge details:
npm run webui
Set these variables in your MCP Client configuration or in a .env
file:
# Neo4j Configuration
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=password2
# Application Configuration
MCP_LOG_LEVEL=debug
LOGS_DIR=./logs
NODE_ENV=development
# MCP Transport Configuration
MCP_TRANSPORT_TYPE=stdio
MCP_HTTP_HOST=127.0.0.1
MCP_HTTP_PORT=3010
{
"mcpServers": {
"atlas-mcp-server-stdio": {
"command": "node",
"args": ["/full/path/to/atlas-mcp-server/dist/index.js"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "password2",
"MCP_LOG_LEVEL": "info",
"NODE_ENV": "development",
"MCP_TRANSPORT_TYPE": "stdio"
}
}
}
}
{
"mcpServers": {
"atlas-mcp-server-http": {
"command": "node",
"args": ["/full/path/to/atlas-mcp-server/dist/index.js"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "password2",
"MCP_LOG_LEVEL": "info",
"NODE_ENV": "development",
"MCP_TRANSPORT_TYPE": "http",
"MCP_HTTP_PORT": "3010",
"MCP_HTTP_HOST": "127.0.0.1"
}
}
}
}
ATLAS provides a suite of tools for project, task, and knowledge management:
{
"name": "atlas_project_create",
"input": {
"mode": "single",
"name": "Market Research Report",
"description": "Comprehensive analysis of market trends for Q3 2023",
"status": "in_progress",
"completionRequirements": "Complete market analysis with competitor comparisons",
"outputFormat": "PDF Report",
"taskType": "research"
}
}
{
"name": "atlas_project_list",
"input": {
"mode": "all"
}
}
{
"name": "atlas_task_create",
"input": {
"mode": "single",
"projectId": "project-123",
"title": "Gather Competitor Data",
"description": "Collect pricing and feature information from top 5 competitors",
"priority": "high",
"status": "todo",
"tags": ["research", "competitors"]
}
}
{
"name": "atlas_task_list",
"input": {
"projectId": "project-123"
}
}
{
"name": "atlas_knowledge_add",
"input": {
"mode": "single",
"projectId": "project-123",
"text": "According to recent industry reports, the market is expected to grow by 15% in Q3 2023.",
"domain": "market_research",
"tags": ["industry_trend", "forecast"]
}
}
{
"name": "atlas_knowledge_list",
"input": {
"projectId": "project-123"
}
}
{
"name": "atlas_unified_search",
"input": {
"value": "market research",
"entityTypes": ["Project", "Task", "Knowledge"]
}
}
npm run db:backup
This creates a timestamped directory with exported JSON files in the ./atlas-backups/
folder.
npm run db:import ./atlas-backups/atlas-backup-20250326120000
Warning: This is a destructive operation that will overwrite all current data.
ATLAS exposes data through standard MCP resource endpoints:
atlas://projects
- List all projectsatlas://tasks
- List all tasksatlas://knowledge
- List all knowledge itemsatlas://projects/{projectId}
- Get a specific projectatlas://tasks/{taskId}
- Get a specific taskatlas://projects/{projectId}/tasks
- Get tasks for a specific projectTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "atlas-mcp-server-stdio" '{"command":"node","args":["/full/path/to/atlas-mcp-server/dist/index.js"],"env":{"NEO4J_URI":"bolt://localhost:7687","NEO4J_USER":"neo4j","NEO4J_PASSWORD":"password2","MCP_LOG_LEVEL":"info","NODE_ENV":"development","MCP_TRANSPORT_TYPE":"stdio"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"atlas-mcp-server-stdio": {
"command": "node",
"args": [
"/full/path/to/atlas-mcp-server/dist/index.js"
],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "password2",
"MCP_LOG_LEVEL": "info",
"NODE_ENV": "development",
"MCP_TRANSPORT_TYPE": "stdio"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"atlas-mcp-server-stdio": {
"command": "node",
"args": [
"/full/path/to/atlas-mcp-server/dist/index.js"
],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "password2",
"MCP_LOG_LEVEL": "info",
"NODE_ENV": "development",
"MCP_TRANSPORT_TYPE": "stdio"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect