aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* remove bun lock file (#686)01-19-remove_bun_lock_fileMaheshtheDev2026-01-202-6690/+2
|
* chore: ux improvements and space selector (#684)01-19-chore_ux_improvements_and_space_selectorMaheshtheDev2026-01-197-193/+238
|
* docs changes (#678)Dhravya Shah2026-01-18109-2633/+7163
| | | Co-authored-by: Claude Opus 4.5 <[email protected]>
* Add Claude Code GitHub Workflow (#681)Dhravya Shah2026-01-182-60/+23
|
* feat: fix interaction and improve Design for extension (#679)01-17-feat_fix_interaction_and_improve_design_for_extensionMaheshtheDev2026-01-1811-269/+855
| | | | | | | | | | | | | | | | | | ### TL;DR Redesigned the browser extension UI with a dark theme and improved the Twitter bookmarks import experience with a new onboarding flow. ### What changed? - Added a new `RightArrow` icon component for UI navigation - Completely redesigned the popup UI with a dark theme and improved layout - Enhanced Twitter bookmarks import functionality: - Added an onboarding toast that appears the first time a user visits the bookmarks page - Implemented a persistent import intent system that automatically opens the import modal when navigating to the bookmarks page - Created a progress toast to show import status - Improved folder import UI - Updated the extension icon and added a new logo SVG - Improved the project selection modal with better styling
* add (mcp): projects aware tool on every init (#676)01-16-add_mcp_projects_aware_tool_on_every_initMaheshtheDev2026-01-174-47/+96
|
* fix: mintlify build (#677)01-16-fix_mintlify_buildMaheshtheDev2026-01-171-2/+0
|
* docs: override install md file (#675)01-16-docs_override_install_md_fileMaheshtheDev2026-01-171-0/+296
|
* chore: delete document, document ui (#673)01-16-chore_delete_document_document_uiMaheshtheDev2026-01-1619-539/+1505
|
* feat: deep-research on user profile and tiptap integration (#672)01-14-feat_deep-research_on_user_profileMaheshtheDev2026-01-1559-365/+1805
| | | | | | | | deep-research on user profile add novel integration tiptap 3.x integration
* chore: quick bugs squash across the elements and added few more changes (#671)Mahesh Sanikommu2026-01-1319-96/+7174
|
* reproduceDhravya Shah2026-01-131-6451/+0
|
* fuck up ho gayaDhravya Shah2026-01-132-0/+6452
|
* fix: buildDhravya Shah2026-01-131-6350/+0
|
* update lockfileDhravya Shah2026-01-131-1/+1
|
* PR: nova alpha release (#670)Mahesh Sanikommu2026-01-13121-322/+21683
| | | Co-authored-by: Dhravya Shah <[email protected]>
* pipecat-sdk (#669)pipecat-docsPrasanna7212026-01-132-8/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | ### 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 #
* fix: oauth discovery not working with some clients (#666)01-12-fix_oauth_discovery_not_working_with_some_clientsDhravya2026-01-121-0/+27
| | | | | | | | | | | | | | | | | | | | | | ### 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.
* Document MCP context prompt feature (#661)mintlify/document-context-prompt-mcp-36921Dhravya2026-01-122-3/+25
| | | | | | | | | | 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
* pipecat-sdk (#663)Prasanna2026-01-109-0/+857
|
* docs: add S3 connector documentation (#657)claude/s3-connector-docs-HmxwCnexxeln2026-01-092-0/+215
| | | | | | | | | 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
* Document promptTemplate feature for AI SDK (#660)mintlify/docs-ai-sdk-prompt-template-98176Dhravya2026-01-092-1/+94
| | | | | | | | | | 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
* Add threshold parameter to profile API docs (#659)Dhravya Shah2026-01-083-1/+99
| | | Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
* feat: allow prompt template for @supermemory/tools package (#655)01-06-feat_allow_prompt_template_for_supermemory_tools_packageMaheshtheDev2026-01-076-41/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | ## 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, }) ```
* fix: mcp docs navigation link (#656)01-06-fix_mcp_docs_navigation_linkMaheshtheDev2026-01-073-2/+2
|
* feat: delete org consumer (#654)01-05-feat_delete_org_consumerMaheshtheDev2026-01-061-0/+117
|
* chore: chatid for posthog (#650)01-03-chore_chatid_for_posthogMaheshtheDev2026-01-041-0/+1
|
* fix: add memory google drive connector (#647)Mahesh Sanikommu2026-01-041-6/+0
|
* Merge branch 'main' of https://github.com/supermemoryai/supermemoryDhravya Shah2026-01-032-33/+2
|\
| * chore: enable google drive connection (#646)01-02-chore_enable_google_drive_connectionMaheshtheDev2026-01-022-33/+2
| |
* | add vibe coding instructions for setupDhravya Shah2026-01-032-1/+387
|/
* interstingDhravya Shah2026-01-021-6366/+0
|
* bunDhravya Shah2026-01-021-94/+128
|
* Merge branch 'main' of https://github.com/supermemoryai/supermemoryDhravya Shah2026-01-024-88/+223
|\
| * docs: update with MCP 4.0 setup and instructions (#641)01-01-docs_update_with_mcp_4.0_setup_and_instructionsMaheshtheDev2026-01-024-88/+223
| |
* | lockfileDhravya Shah2026-01-021-11/+5
| |
* | chore: wrangler jsonc updateDhravya Shah2026-01-021-1/+7
|/
* remake lockfileDhravya Shah2026-01-021-150/+100
|
* fix: added one more fileDhravya Shah2026-01-021-0/+1
|
* fix: mcp initializes in durable objectDhravya Shah2026-01-022-321/+29
|
* chore(browser-extension): twitter import modal & package dependencies (#643)01-01-chore_browser-extension_fixed_package_dependenciesMaheshtheDev2026-01-023-44/+386
| | | | | - twitter import for all bookmarks - fixed chrome extension package dependencies issues with monorepo
* chore: update readme and gitignore (#640)12-30-chore_update_readme_and_gitignoreMaheshtheDev2025-12-314-3/+11
|
* chore: update cursor one click mcp install (#639)12-30-chore_update_cursor_one_click_mcp_installMaheshtheDev2025-12-311-1/+1
|
* fix: prompt injection with mcp (#638)Mahesh Sanikommu2025-12-301-0/+92
|
* fixDhravya Shah2025-12-302-106/+153
|
* fixDhravya Shah2025-12-301-1/+1
|
* fix lofkcilfe againDhravya Shah2025-12-301-11/+7
|
* fix: lockfileDhravya Shah2025-12-301-1008/+609
|
* replace all old mcp references with newDhravya Shah2025-12-304-45/+48
|
* feat: supermemory MCP 4.0 (#631)Mahesh Sanikommu2025-12-3013-47/+2135
|