UNPKG

@mseep/atlas-mcp-server

Version:

A Model Context Protocol (MCP) server for ATLAS, a Neo4j-powered task management system for LLM Agents - implementing a three-tier architecture (Projects, Tasks, Knowledge) to manage complex workflows.

11 lines (10 loc) 418 B
import { McpError } from '../types/errors.js'; import { ToolContext } from './security.js'; interface ErrorHandlerOptions { context: ToolContext; operation: string; input?: unknown; } export declare const handleOperationError: (error: unknown, options: ErrorHandlerOptions) => never; export declare const handleDatabaseError: (error: unknown, errorMap: Record<string, () => McpError>) => never; export {};