$git clone https://github.com/cyanheads/atlas-mcp-serverATLAS (Adaptive Task & Logic Automation System) is a project, knowledge, and task management system for LLM Agents.
| 1 | # ATLAS: Task Management System |
| 2 | |
| 3 | [](https://www.typescriptlang.org/) |
| 4 | [](https://modelcontextprotocol.io/) |
| 5 | [](https://github.com/cyanheads/atlas-mcp-server/releases) |
| 6 | [](https://opensource.org/licenses/Apache-2.0) |
| 7 | []() |
| 8 | [](https://github.com/cyanheads/atlas-mcp-server) |
| 9 | |
| 10 | ATLAS (Adaptive Task & Logic Automation System) is a project, knowledge, and task management system for LLM Agents. |
| 11 | |
| 12 | Built on a 3-node architecture: |
| 13 | |
| 14 | ``` |
| 15 | +-------------------------------------------+ |
| 16 | | PROJECT | |
| 17 | |-------------------------------------------| |
| 18 | | id: string | |
| 19 | | name: string | |
| 20 | | description: string | |
| 21 | | status: string | |
| 22 | | urls?: Array<{title: string, url: string}>| |
| 23 | | completionRequirements: string | |
| 24 | | outputFormat: string | |
| 25 | | taskType: string | |
| 26 | | createdAt: string | |
| 27 | | updatedAt: string | |
| 28 | +----------------+--------------------------+ |
| 29 | | | |
| 30 | | | |
| 31 | v v |
| 32 | +----------------------------------+ +----------------------------------+ |
| 33 | | TASK | | KNOWLEDGE | |
| 34 | |----------------------------------| |----------------------------------| |
| 35 | | id: string | | id: string | |
| 36 | | projectId: string | | projectId: string | |
| 37 | | title: string | | text: string | |
| 38 | | description: string | | tags?: string[] | |
| 39 | | priority: string | | domain: string | |
| 40 | | status: string | | citations?: string[] | |
| 41 | | assignedTo?: string | | createdAt: string | |
| 42 | | urls?: Array<{title: string, | | | |
| 43 | | url: string}> | | updatedAt: string | |
| 44 | | tags?: string[] | | | |
| 45 | | completionRequirements: string | | | |
| 46 | | outputFormat: string | | | |
| 47 | | taskType: string | | | |
| 48 | | createdAt: string | | | |
| 49 | | updatedAt: string | | | |
| 50 | +----------------------------------+ +----------------------------------+ |
| 51 | ``` |
| 52 | |
| 53 | Implemented as a Model Context Protocol (MCP) server, ATLAS allows LLM agents to interact with a project management database, enabling them to manage projects, tasks, and knowledge items. |
| 54 | |
| 55 | > **Important Version Note**: [Version 1.5.4](https://github.com/cyanheads/atlas-mcp-server/releases/tag/v1.5.4) is the last version that uses SQLite as the database. Version 2.0 and onwards has been completely rewritten to use Neo4j, which requires either: |
| 56 | > |
| 57 | > - Self-hosting using Docker (docker-compose included in repository) |
| 58 | > - Using Neo4j AuraDB cloud service: https://neo4j.com/product/auradb/ |
| 59 | > |
| 60 | > Version 2.5.0 introduces a new 3-node system (Projects, Tasks, Knowledge) that replaces the pre |