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.

16 lines (15 loc) 582 B
/** * Generates a unique, URL-friendly, 6-character alphanumeric ID. * Uses nanoid's default alphabet (A-Za-z0-9_-). * * @returns A 6-character string ID. */ export declare function generateShortId(): string; /** * Generates a unique ID with a specified prefix and length. * * @param prefix - The prefix for the ID (e.g., 'prj', 'tsk', 'knw'). * @param length - The desired length of the random part of the ID (default: 10). * @returns A prefixed ID string (e.g., 'prj_aBcDeFgHiJ'). */ export declare function generatePrefixedId(prefix: string, length?: number): string;