Add ability to store and retreive user memory through mcp tool

This commit is contained in:
Manoj Aggarwal 2026-01-20 15:04:07 -08:00
parent 6e331c3b85
commit 48fb38bafc
11 changed files with 956 additions and 0 deletions

View file

@ -77,4 +77,17 @@ export {
ScrapeWebpageResultSchema,
ScrapeWebpageToolUI,
} from "./scrape-webpage";
export {
type MemoryItem,
type RecallMemoryArgs,
RecallMemoryArgsSchema,
type RecallMemoryResult,
RecallMemoryResultSchema,
RecallMemoryToolUI,
type SaveMemoryArgs,
SaveMemoryArgsSchema,
type SaveMemoryResult,
SaveMemoryResultSchema,
SaveMemoryToolUI,
} from "./user-memory";
export { type WriteTodosData, WriteTodosSchema, WriteTodosToolUI } from "./write-todos";