UNPKG

mem100x

Version:

⚡ The FASTEST MCP memory server ever built - 66k+ entities/sec with intelligent context detection

19 lines 768 B
/** * Optimized JSON utilities * Uses native JSON with additional validation and error handling */ export declare function stringifyObservations(observations: string[]): string; export declare function parseObservations(json: string): string[]; export declare function stringifyToolResponse(obj: any): string; export declare function stringifyGeneric(obj: any, pretty?: boolean): string; export declare function parseJSON<T>(json: string): T; interface EntityResult { type: 'entity'; name: string; entityType: string; observations: string[]; } export declare function stringifyEntityResult(entity: EntityResult): string; export declare function parseEntityResult(json: string): EntityResult | null; export {}; //# sourceMappingURL=fast-json.d.ts.map