Atlas MCP Server
A Model Context Protocol (MCP) server that helps LLMs manage reasoning, task management, and organization
🔌 MCP Tools
Overview
ATLAS MCP Server
Description:
A hierarchical task management server providing LLMs with structured reasoning capabilities
Category: Task Management & Organization
Overview: ATLAS is designed to help LLMs manage complex tasks through hierarchical organization, supporting up to 8 levels of parent-child relationships. It features robust dependency management, status tracking, and content support including markdown, code snippets, and JSON data.
Key Features:
- Hierarchical task organization
- Dependency management and validation
- Rich content support (Markdown, code, JSON)
- Memory-optimized operations (512MB cache)
- SQLite integration with WAL mode
- Rate limiting (100 req/min)
- Comprehensive error handling
- Transaction rollback capabilities
Installation:
git clone https://github.com/cyanheads/atlas-mcp-server.git
cd atlas-mcp-server
npm install
Configuration:
{
"mcpServers": {
"atlas": {
"command": "node",
"args": ["/path/to/atlas-mcp-server/build/index.js"],
"env": {
"ATLAS_STORAGE_DIR": "/path/to/storage/directory",
"ATLAS_STORAGE_NAME": "atlas-tasks",
"ATLAS_MAX_RETRIES": "3",
"ATLAS_RETRY_DELAY": "1000",
"ATLAS_CACHE_SIZE": "2000"
}
}
}
}
Task Structure Example:
{
"name": "Implementation Task",
"description": "Implement core functionality",
"type": "task",
"notes": [
"# Requirements\n- Feature A\n- Feature B",
"interface Feature {\n name: string;\n enabled: boolean;\n}"
],
"metadata": {
"priority": "high",
"tags": ["core", "implementation"],
"version": 1
}
}
Licensed under Apache License 2.0