Назад к каталогу
atlas-mcp-server

atlas-mcp-server

Сообщество

от cyanheads

0.0
0 отзывов

A Model Context Protocol (MCP) server for ATLAS, a Neo4j-powered task management system for LLM Agents - implementing a three-tier architecture (Projects, Tasks, Knowledge) to manage complex workflows. Now with Deep Research.

Установка

npm install

Описание

# ATLAS: Task Management System [![TypeScript](https://img.shields.io/badge/TypeScript-5.8.3-blue.svg)](https://www.typescriptlang.org/) [![Model Context Protocol](https://img.shields.io/badge/MCP-1.12.0-green.svg)](https://modelcontextprotocol.io/) [![Version](https://img.shields.io/badge/Version-2.8.15-blue.svg)](https://github.com/cyanheads/atlas-mcp-server/releases) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Status](https://img.shields.io/badge/Status-Stable-green.svg)]() [![GitHub](https://img.shields.io/github/stars/cyanheads/atlas-mcp-server?style=social)](https://github.com/cyanheads/atlas-mcp-server) ATLAS (Adaptive Task & Logic Automation System) is a project, knowledge, and task management system for LLM Agents. Built on a 3-node architecture: ``` +-------------------------------------------+ | PROJECT | |-------------------------------------------| | id: string | | name: string | | description: string | | status: string | | urls?: Array<{title: string, url: string}>| | completionRequirements: string | | outputFormat: string | | taskType: string | | createdAt: string | | updatedAt: string | +----------------+--------------------------+ | | | | v v +----------------------------------+ +----------------------------------+ | TASK | | KNOWLEDGE | |----------------------------------| |----------------------------------| | id: string | | id: string | | projectId: string | | projectId: string | | title: string | | text: string | | description: string | | tags?: string[] | | priority: string | | domain: string | | status: string | | citations?: string[] | | assignedTo?: string | | createdAt: string | | urls?: Array<{title: string, | | | | url: string}> | | updatedAt: string | | tags?: string[] | | | | completionRequirements: string | | | | outputFormat: string | | | | taskType: string | | | | createdAt: string | | | | updatedAt: string | | | +----------------------------------+ +----------------------------------+ ``` 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. > **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: > > - Self-hosting using Docker (docker-compose included in repository) > - Using Neo4j AuraDB cloud service: https://neo4j.com/product/auradb/ > > Version 2.5.0 introduces a new 3-node system (Projects, Tasks, Knowledge) that replaces the previous structure. ## Table of Contents - [Overview](#overview) - [Features](#features) - [Installation](#installation) - [Running the Server](#running-the-server) - [Web UI (Experimental)](#web-ui-experimental) - [Configuration](#configuration) - [Project Structure](#project-structure) - [Tools](#tools) - [Resources](#resources) - [Database Backup and Restore](#database-backup-and-restore) - [Examples](#examples) - [License](#license) ## Overview ATLAS implements the Model Context Protocol (MCP), enabling standardized communication between LLMs and external systems through: - **Clients**: Claude Desktop, IDEs, and other MCP-compatible clients - **Servers**: Tools and resources for project, task, and knowledge management - **LLM Agents**: AI models that leverage the server's management capabilities ### System Integration The Atlas Platform integrates these components into a cohesive system: - **Project-Task Relationship**: Projects contain tasks that represent actionable steps ne

Отзывы (0)

Пока нет отзывов. Будьте первым!