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.
9 lines (8 loc) • 405 B
TypeScript
import { KnowledgeListRequest, KnowledgeListResponse } from "./types.js";
/**
* Retrieve and filter knowledge items based on specified criteria
*
* @param request The knowledge query parameters including filters and pagination controls
* @returns Promise resolving to structured knowledge items
*/
export declare function listKnowledge(request: KnowledgeListRequest): Promise<KnowledgeListResponse>;