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.
15 lines (14 loc) • 674 B
TypeScript
/**
* @fileoverview Implements the unified search logic for Neo4j entities.
* @module src/services/neo4j/searchService/unifiedSearchLogic
*/
import { PaginatedResult, SearchOptions } from "../types.js";
import { SearchResultItem } from "./searchTypes.js";
/**
* Perform a unified search across multiple entity types (node labels).
* Searches common properties like name, title, description, text.
* Applies pagination after combining and sorting results from individual label searches.
* @param options Search options
* @returns Paginated search results
*/
export declare function _searchUnified(options: SearchOptions): Promise<PaginatedResult<SearchResultItem>>;