supermemory/apps/docs
MaheshtheDev a00a751e10 pkg(tools): Expose raw search results in MemoryPromptData for prompt templates (#787)
Expose raw search results in `MemoryPromptData` so prompt templates can traverse, filter, and selectively include results based on metadata (e.g. score, source).

##### Usage example

```typescript
const promptTemplate = (data: MemoryPromptData) => {
  const relevant = data.searchResults.filter(
    (r) => (r.metadata?.score as number) > 0.7
  )
  return `${data.userMemories}\n${relevant.map(r => r.memory).join('\n')}`
}
```
2026-03-19 00:38:53 +00:00
..
.cursor/rules migrate docs to public 2025-09-28 16:42:06 -07:00
add-memories docs: clarify metadata-only PATCH does not reindex (#784) 2026-03-17 20:48:52 +00:00
ai-sdk pkg(tools): Expose raw search results in MemoryPromptData for prompt templates (#787) 2026-03-19 00:38:53 +00:00
changelog Document MCP context prompt feature (#661) 2026-01-12 21:51:51 +00:00
concepts docs: add entity context documentation and fix MDX parsing (#723) 2026-02-03 22:53:21 +00:00
connectors feat: delete connection without removing the documents (#778) 2026-03-17 23:21:36 +00:00
cookbook docs changes (#678) 2026-01-18 16:55:32 -08:00
deployment migrate docs to public 2025-09-28 16:42:06 -07:00
images feat: adding viaSocket integration page (#757) 2026-03-02 11:37:42 -08:00
integrations pkg(tools): Expose raw search results in MemoryPromptData for prompt templates (#787) 2026-03-19 00:38:53 +00:00
list-memories docs changes (#678) 2026-01-18 16:55:32 -08:00
logo migrate docs to public 2025-09-28 16:42:06 -07:00
memory-api docs: clarify metadata-only PATCH does not reindex (#784) 2026-03-17 20:48:52 +00:00
memory-graph docs changes (#678) 2026-01-18 16:55:32 -08:00
memory-router docs changes (#678) 2026-01-18 16:55:32 -08:00
memorybench icon in overview 2025-12-24 11:22:38 -08:00
migration docs changes (#678) 2026-01-18 16:55:32 -08:00
model-enhancement fix: model names 2025-10-03 02:41:49 -07:00
openai-sdks migrate docs to public 2025-09-28 16:42:06 -07:00
overview migrate docs to public 2025-09-28 16:42:06 -07:00
search docs changes (#678) 2026-01-18 16:55:32 -08:00
snippets migrate docs to public 2025-09-28 16:42:06 -07:00
supermemory-mcp docs changes (#678) 2026-01-18 16:55:32 -08:00
update-delete-memories docs: clarify metadata-only PATCH does not reindex (#784) 2026-03-17 20:48:52 +00:00
user-profiles docs changes (#678) 2026-01-18 16:55:32 -08:00
.gitignore migrate docs to public 2025-09-28 16:42:06 -07:00
add-memories.mdx docs: clarify metadata-only PATCH does not reindex (#784) 2026-03-17 20:48:52 +00:00
analytics.mdx fix: all broken links 2025-10-07 17:25:39 -07:00
authentication.mdx docs: add scoped key deletion endpoint to auth docs (#756) 2026-02-28 01:06:12 +00:00
docs.json Add Supermemory integration for Microsoft Agent Framework (#775) 2026-03-10 01:49:45 +00:00
document-operations.mdx docs: clarify metadata-only PATCH does not reindex (#784) 2026-03-17 20:48:52 +00:00
favicon.png migrate docs to public 2025-09-28 16:42:06 -07:00
install.md docs: add entity context documentation and fix MDX parsing (#723) 2026-02-03 22:53:21 +00:00
intro.mdx trigger: Mintlify build (#725) 2026-02-04 14:56:37 -07:00
introduction.mdx docs changes (#678) 2026-01-18 16:55:32 -08:00
memory-operations.mdx direct add memory support 2026-02-09 18:32:24 -08:00
n8n.mdx add(docs): migration guide from zep to supermemory (#612) 2025-12-20 00:47:52 +00:00
package.json update quickstart 2025-11-27 09:53:11 -07:00
quickstart.mdx docs changes (#678) 2026-01-18 16:55:32 -08:00
README.md migrate docs to public 2025-09-28 16:42:06 -07:00
search.mdx docs changes (#678) 2026-01-18 16:55:32 -08:00
style.css feat: mobile responsive, lint formats, toast, render issue fix (#688) 2026-01-21 03:11:53 +00:00
test.py docs changes (#678) 2026-01-18 16:55:32 -08:00
test.ts mastra integration (#717) 2026-02-03 00:43:08 +00:00
user-profiles.mdx docs changes (#678) 2026-01-18 16:55:32 -08:00
vibe-coding.mdx docs changes (#678) 2026-01-18 16:55:32 -08:00
zapier.mdx add(docs): migration guide from zep to supermemory (#612) 2025-12-20 00:47:52 +00:00

supermemory Docs