Commit graph

1350 commits

Author SHA1 Message Date
MaheshtheDev
9fd49193ac chore: delete document, document ui (#673) 2026-01-16 21:44:26 +00:00
MaheshtheDev
59c294b299 feat: deep-research on user profile and tiptap integration (#672)
deep-research on user profile

add novel integration

tiptap 3.x integration
2026-01-15 21:53:53 +00:00
Mahesh Sanikommu
641db19e35
chore: quick bugs squash across the elements and added few more changes (#671) 2026-01-13 17:53:28 -08:00
Dhravya Shah
34c58c37fd reproduce
Some checks failed
Publish AI SDK / publish (push) Has been cancelled
2026-01-13 01:21:42 -08:00
Dhravya Shah
a0ee96f9ec fuck up ho gaya 2026-01-13 01:20:35 -08:00
Dhravya Shah
92390be8f4 fix: build 2026-01-13 01:12:00 -08:00
Dhravya Shah
4e841796c9 update lockfile 2026-01-13 00:56:09 -08:00
Mahesh Sanikommu
645f89310c
PR: nova alpha release (#670)
Co-authored-by: Dhravya Shah <dhravya@supermemory.com>
2026-01-13 00:54:56 -08:00
Prasanna721
ced23c7ea2 pipecat-sdk (#669)
### Changes

 - New documentation page: apps/docs/voice-realtime/pipecat.mdx
  - Installation guide for supermemory-pipecat package
  - Configuration with SupermemoryPipecatService and InputParams
  - Pipeline integration guide
  - How it works (Memory Retrieval, Context Enhancement)
  - Memory modes table (profile, query, full)
  - Configuration options with InputParams
  - Complete FastAPI voice agent example
 - Updated docs.json:
  - Added new "Voice & Realtime" group under SDKs tab with mic icon
  - Removed external npm/pypi link pages from SDK sidebar

### Files Changed

 apps/docs/voice-realtime/pipecat.mdx  (new)
 apps/docs/docs.json                   (modified)

### Navigation

SDKs → Voice & Realtime → Pipecat

#
2026-01-13 05:44:44 +00:00
Dhravya
e94134cd26 fix: oauth discovery not working with some clients (#666)
### TL;DR

TESTING REMAINING. This is my hypothesis. @MaheshtheDev please carry on from here or we can test in prod.

Added a proxy endpoint for OAuth authorization server metadata to support non-compliant MCP clients.

### What changed?

Added a new endpoint `/.well-known/oauth-authorization-server` to the MCP server that proxies requests to the main API. This endpoint fetches the authorization server metadata from the API and returns it to clients.

### How to test?

1. Make a GET request to `/.well-known/oauth-authorization-server` on the MCP server
2. Verify that it returns the same metadata as the main API's `/.well-known/oauth-authorization-server` endpoint
3. Test with a client that expects to find the authorization server metadata on the MCP domain

### Why make this change?

Some MCP clients don't correctly follow the OAuth specification. Instead of using the `authorization_servers` array provided in the protected resource metadata, they look for the authorization server metadata directly on the MCP server domain. This proxy endpoint ensures compatibility with these non-compliant clients without requiring them to be updated.
2026-01-12 23:38:30 +00:00
Dhravya
aa308f3e91 Document MCP context prompt feature (#661)
Added documentation for the new `context` prompt in the Supermemory MCP server that enables automatic user profile injection into AI conversations. Updated the MCP overview page with detailed parameter documentation and usage guidance, and added a changelog entry for December 30, 2025.

**Files changed:**
- `apps/docs/supermemory-mcp/mcp.mdx` - Added Prompts section with `context` prompt documentation
- `apps/docs/changelog/developer-platform.mdx` - Added December 30, 2025 changelog entry

Generated from [fix: prompt injection with mcp](https://github.com/supermemoryai/supermemory/pull/638) @MaheshtheDev
2026-01-12 21:51:51 +00:00
Prasanna
d015036b05
pipecat-sdk (#663) 2026-01-10 15:19:31 -08:00
nexxeln
4850856920 docs: add S3 connector documentation (#657)
Add comprehensive documentation for the S3 connector including:
- Quick setup with TypeScript, Python, and cURL examples
- S3-compatible services support (MinIO, DigitalOcean Spaces, R2)
- Prefix filtering and dynamic container tag extraction
- Connection management and sync behavior
- IAM permissions and security best practices
2026-01-09 03:13:13 +00:00
Dhravya
2dfadd344b Document promptTemplate feature for AI SDK (#660)
Added comprehensive documentation for the new `promptTemplate` option in the AI SDK, which allows developers to customize how memories are formatted and injected into system prompts. This includes examples for XML-based prompting (Claude), custom branding, and the `MemoryPromptData` interface.

## Files Changed
- `apps/docs/ai-sdk/user-profiles.mdx` - Added "Custom Prompt Templates" section with examples and interface documentation
- `apps/docs/ai-sdk/overview.mdx` - Updated User Profiles section to mention customization capabilities

Generated from [feat: allow prompt template for @supermemory/tools package](https://github.com/supermemoryai/supermemory/pull/655) @MaheshtheDev
2026-01-09 02:40:04 +00:00
Dhravya Shah
ca8eb295db
Add threshold parameter to profile API docs (#659)
Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
2026-01-08 18:36:48 -08:00
MaheshtheDev
68d4d95c1d feat: allow prompt template for @supermemory/tools package (#655)
## Add customizable prompt templates for memory injection

**Changes:**

- Add `promptTemplate` option to `withSupermemory()` for full control over injected memory format (XML, custom branding, etc.)
- New `MemoryPromptData` interface with `userMemories` and `generalSearchMemories` fields
- Exclude `system` messages from persistence to avoid storing injected prompts
- Add JSDoc comments to all public interfaces for better DevEx

**Usage:**

```typescript
const customPrompt = (data: MemoryPromptData) => `
<user_memories>
${data.userMemories}
${data.generalSearchMemories}
</user_memories>
`.trim()

const model = withSupermemory(openai("gpt-4"), "user-123", {
  promptTemplate: customPrompt,
})
```
2026-01-07 03:48:16 +00:00
MaheshtheDev
bc8a739a03 fix: mcp docs navigation link (#656) 2026-01-07 03:39:42 +00:00
MaheshtheDev
6a8c8a5091 feat: delete org consumer (#654) 2026-01-06 18:39:04 +00:00
MaheshtheDev
a12852c95d chore: chatid for posthog (#650) 2026-01-04 19:01:50 +00:00
Mahesh Sanikommu
92078c1160
fix: add memory google drive connector (#647) 2026-01-04 11:00:47 -08:00
Dhravya Shah
6efac9f4f5 Merge branch 'main' of https://github.com/supermemoryai/supermemory 2026-01-03 18:21:20 -08:00
Dhravya Shah
bc02650451 add vibe coding instructions for setup 2026-01-03 18:20:47 -08:00
MaheshtheDev
1e4de94840 chore: enable google drive connection (#646) 2026-01-02 23:38:47 +00:00
Dhravya Shah
668dbdd8b1 intersting 2026-01-02 15:36:20 -08:00
Dhravya Shah
b3906f865c bun 2026-01-02 15:33:07 -08:00
Dhravya Shah
17b60a7ce0 Merge branch 'main' of https://github.com/supermemoryai/supermemory 2026-01-02 15:31:57 -08:00
Dhravya Shah
72eb74e4dc lockfile 2026-01-02 15:31:51 -08:00
Dhravya Shah
f7c442e0dc chore: wrangler jsonc update 2026-01-02 13:28:25 -08:00
MaheshtheDev
0e3ea4eed2 docs: update with MCP 4.0 setup and instructions (#641) 2026-01-02 21:20:36 +00:00
Dhravya Shah
13186b2b6b remake lockfile 2026-01-02 13:07:24 -08:00
Dhravya Shah
d3bb0a8855 fix: added one more file 2026-01-02 13:01:26 -08:00
Dhravya Shah
e37c84e51f fix: mcp initializes in durable object 2026-01-02 12:59:33 -08:00
MaheshtheDev
da582ccd71 chore(browser-extension): twitter import modal & package dependencies (#643)
- twitter import for all bookmarks
- fixed chrome extension package dependencies issues with monorepo
2026-01-02 19:41:40 +00:00
MaheshtheDev
cda6e1a93a chore: update readme and gitignore (#640) 2025-12-31 02:41:35 +00:00
MaheshtheDev
7622dc251c chore: update cursor one click mcp install (#639) 2025-12-31 02:09:45 +00:00
Mahesh Sanikommu
7d0fa7d033
fix: prompt injection with mcp (#638) 2025-12-30 14:22:35 -08:00
Dhravya Shah
5f41711933 fix 2025-12-30 12:14:18 -08:00
Dhravya Shah
717dfb0775 fix 2025-12-30 12:12:45 -08:00
Dhravya Shah
7d82442681 fix lofkcilfe again 2025-12-30 12:07:31 -08:00
Dhravya Shah
3d95776e98 fix: lockfile 2025-12-30 12:06:17 -08:00
Dhravya Shah
4e422905a3 replace all old mcp references with new 2025-12-30 12:04:30 -08:00
Mahesh Sanikommu
c6792e5100
feat: supermemory MCP 4.0 (#631) 2025-12-30 12:03:21 -08:00
MaheshtheDev
04fb67a33e chore: update the package version of tools (#637) 2025-12-30 18:58:04 +00:00
Arnab Mondal
aa5654f084
fix(tools): pass apiKey to profile search instead of using process.env (#634) 2025-12-30 10:15:10 -08:00
nexxeln
10d8f92439 fix deduplication in python sdk (#626)
done in a similar way to the ai sdk
2025-12-29 18:51:43 +00:00
Dhravya Shah
5bef1b2bbc chore: bump package version 2025-12-28 19:22:28 -08:00
Vidya Rupak
d93ffbb93f
MemoryGraph - revamped (#627) 2025-12-29 00:32:26 +05:30
Dhravya Shah
85b97b789d icon in overview 2025-12-24 11:22:38 -08:00
Dhravya Shah
77f52df0f8 fix: small changes 2025-12-24 11:02:18 -08:00
Prasanna
7e79e227d3
docs: added MemoryBench documentation (#630) 2025-12-24 11:01:26 -08:00