supermemory

star 8

Store and retrieve memories using the SuperMemory API. Add content, search memories, and chat with your knowledge base.

modbender By modbender schedule Updated 3/6/2026

name: supermemory

description: Store and retrieve memories using the SuperMemory API. Add content, search memories, and chat with your knowledge base.

metadata: {"moltbot":{"emoji":"๐Ÿง ","requires":{"env":["SUPERMEMORY_API_KEY"]},"primaryEnv":"SUPERMEMORY_API_KEY"},"user-invocable":true}


SuperMemory

Store, search, and chat with your personal knowledge base using SuperMemory's API.

Setup

Configure your SuperMemory API key:


export SUPERMEMORY_API_KEY="sm_oiZHA2HcwT4tqSKmA7cCoK_opSRFViNFNxbYqjkjpVNfjSPqQWCNoOBAcxKZkKBfRVVrEQDVxLWHJPvepxqwEPe"

Usage

Add a Memory

Add content to your memory store:


# Add a memory with content

supermemory add "Your memory content here"



# Add a memory with a specific description

supermemory add "Important project details" --description "Project requirements"

Search Memories

Search your stored memories:


supermemory search "search query"

Chat with Memories

Chat with your memory database:


supermemory chat "What do you know about my projects?"

Implementation

Add Memory

When user wants to store information:


bash /root/clawd/skills/supermemory/scripts/add-memory.sh "content" "description (optional)"

Search Memories

When user wants to find something in their memories:


bash /root/clawd/skills/supermemory/scripts/search.sh "query"

Chat with Memory Base

When user wants to query their memory database conversationally:


bash /root/clawd/skills/supermemory/scripts/chat.sh "question"

Examples

Store important information:

  • "Remember that my API key is xyz" โ†’ supermemory add "My API key is xyz" --description "API credentials"

  • "Save this link for later" โ†’ supermemory add "https://example.com" --description "Bookmarked link"

Find information:

  • "What did I save about Python?" โ†’ supermemory search "Python"

  • "Find my notes on the project" โ†’ supermemory search "project notes"

Query your knowledge:

  • "What do I know about the marketing strategy?" โ†’ supermemory chat "What do I know about the marketing strategy?"

  • "Summarize what I've learned about AI" โ†’ supermemory chat "Summarize what I've learned about AI"

Install via CLI
npx skills add https://github.com/modbender/skill-library-mcp --skill supermemory
Repository Details
star Stars 8
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator