atlas-mcp-server
Version:
ATLAS (Adaptive Task & Logic Automation System): An MCP server enabling LLM agents to manage projects, tasks, and knowledge via a Neo4j-backed, three-tier architecture. Facilitates complex workflow automation and project management through LLM Agents.
11 lines (10 loc) • 347 B
TypeScript
import { ToolContext } from "../../../types/tool.js";
export declare const atlasListTasks: (input: unknown, context: ToolContext) => Promise<{
tasks: (import("../../../services/neo4j/types.js").Neo4jTask & {
assignedToUserId: string | null;
})[];
total: number;
page: number;
limit: number;
totalPages: number;
}>;