Use this file to discover all available pages before exploring further.
Supermemory MCP Server 4.0 gives AI assistants (Claude, Cursor, Windsurf, etc.) persistent memory across conversations. Built on Cloudflare Workers with Durable Objects for scalable, persistent connections.
The server uses OAuth by default. Your client will discover the authorization server via /.well-known/oauth-protected-resource and prompt you to authenticate.
Inject user profile and preferences as system context for AI conversations. Returns a formatted message with the user’s stable preferences and recent activity.
You can access this in Cursor and Claude Code by just doing /context, which will give the LLMs just enough context to use and query supermemory more.
Purpose: Unlike the recall tool (which searches for specific information) or the profile resource (which returns raw data), the context prompt provides a pre-formatted system message designed for context injection at the start of conversations.
Parameter
Type
Required
Description
containerTag
string
No
Project tag to scope the profile (max 128 chars)
includeRecent
boolean
No
Include recent activity in the profile. Default: true
Output format:
Includes instructions to save new memories using the memory tool
Stable Preferences: Long-term user facts and preferences
Recent Activity: Recent interactions and context (when includeRecent is true)
Fallback message when no profile exists yet
When to use:
Use context prompt for automatic system context injection at conversation start
Use recall tool when you need to search for specific information
Use profile resource when you need raw profile data for custom processing