UNPKG

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.

10 lines (9 loc) 515 B
import { ProjectListRequest, ProjectListResponse } from "./types.js"; /** * Retrieve and filter project entities based on specified criteria * Provides two query modes: detailed entity retrieval or paginated collection listing * * @param request The project query parameters including filters and pagination controls * @returns Promise resolving to structured project entities with optional related resources */ export declare function listProjects(request: ProjectListRequest): Promise<ProjectListResponse>;