Semantic memory and context - store and retrieve information with embeddings for similarity search. Use for long-term memory, context recall, and knowledge persistence.
Vector-based memory storage with embeddings for semantic similarity search.
| Tool | Purpose |
|------|---------|
| mcp__memory__store | Store a memory |
| mcp__memory__search | Semantic similarity search |
| mcp__memory__list | List recent memories |
| mcp__memory__delete | Remove a memory |
| mcp__memory__get_context | Get relevant context |
mcp__memory__store(
content="User prefers TypeScript over JavaScript for new projects",
tags=["preferences", "programming"]
)
mcp__memory__search(query="What does the user prefer for web development?", limit=5)
mcp__memory__get_context(topic="user's coding preferences")
mcp__memory__list(limit=10)
memory add "Content to remember" --tag preference
memory search "query" # Semantic search
memory list # Recent memories
memory export -f markdown # Export
~/.local/share/memory/memory.db (SQLite with embeddings as BLOB, respects XDG_DATA_HOME)
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer