mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
Add Cursor plugin card
This commit is contained in:
parent
3a3324cee3
commit
90c4e07389
2 changed files with 24 additions and 0 deletions
|
|
@ -210,6 +210,7 @@ function mcpClientIconSrc(key: MCPClientKey): string {
|
|||
const PLUGIN_SIMPLE_TITLES: Record<string, string> = {
|
||||
claude_code: "Remembers your code conventions and decisions",
|
||||
codex: "Codex sessions that remember your project",
|
||||
cursor: "Cursor sessions with persistent project memory",
|
||||
opencode: "OpenCode with persistent project memory",
|
||||
openclaw: "Save chats from Telegram, Discord and Slack",
|
||||
hermes: "Persistent memory for the Hermes agent",
|
||||
|
|
|
|||
|
|
@ -74,6 +74,28 @@ export const PLUGIN_CATALOG: Record<string, PluginInfo> = {
|
|||
},
|
||||
],
|
||||
},
|
||||
cursor: {
|
||||
id: "cursor",
|
||||
name: "Cursor",
|
||||
tagline: "Persistent memory for your Cursor coding sessions",
|
||||
icon: "/images/plugins/cursor.png",
|
||||
docsUrl: "https://docs.supermemory.ai/supermemory-mcp/setup#cursor",
|
||||
installSteps: [
|
||||
{
|
||||
title: "Add Supermemory to Cursor",
|
||||
description:
|
||||
"Paste this into ~/.cursor/mcp.json. This key is shown only once — save it now.",
|
||||
code: '{\n "mcpServers": {\n "supermemory": {\n "url": "https://mcp.supermemory.ai/mcp",\n "headers": {\n "Authorization": "Bearer sm_..."\n }\n }\n }\n}',
|
||||
copyLabel: "Cursor config",
|
||||
secret: true,
|
||||
},
|
||||
{
|
||||
title: "Restart Cursor",
|
||||
description:
|
||||
"Restart Cursor so it reloads the MCP server configuration.",
|
||||
},
|
||||
],
|
||||
},
|
||||
opencode: {
|
||||
id: "opencode",
|
||||
name: "OpenCode",
|
||||
|
|
@ -143,6 +165,7 @@ export const PLUGIN_CATALOG: Record<string, PluginInfo> = {
|
|||
const SPACE_TO_CATALOG_ID: Record<string, string> = {
|
||||
"claude-code": "claude_code",
|
||||
codex: "codex",
|
||||
cursor: "cursor",
|
||||
opencode: "opencode",
|
||||
openclaw: "openclaw",
|
||||
hermes: "hermes",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue