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.
22 lines (21 loc) • 516 B
TypeScript
/**
* @fileoverview Defines types related to search functionality in the Neo4j service.
* @module src/services/neo4j/searchService/searchTypes
*/
/**
* Type for search result items - Made generic
*/
export type SearchResultItem = {
id: string;
type: string;
entityType?: string;
title: string;
description?: string;
matchedProperty: string;
matchedValue: string;
createdAt?: string;
updatedAt?: string;
projectId?: string;
projectName?: string;
score: number;
};