-
Notifications
You must be signed in to change notification settings - Fork 4
Memory Tools
Alessio Rocchi edited this page Jan 27, 2026
·
1 revision
5 MCP tools for persistent memory operations.
Store a key-value entry with optional embedding.
Input:
{
"key": "pattern:di",
"content": "Use dependency injection",
"namespace": "best-practices",
"metadata": {},
"generateEmbedding": false
}Search memory with FTS5 or vector search.
Input:
{
"query": "dependency injection",
"namespace": "best-practices",
"limit": 10,
"useVector": false,
"threshold": 0.7
}Output:
{
"count": 1,
"results": [
{
"entry": {...},
"score": 0.95,
"matchType": "fts"
}
]
}Retrieve entry by key.
Input:
{
"key": "pattern:di",
"namespace": "best-practices"
}List all memory entries.
Input:
{
"namespace": "best-practices",
"limit": 20,
"offset": 0
}Delete a memory entry.
Input:
{
"key": "pattern:di",
"namespace": "best-practices"
}Related:
Getting Started
Core Concepts
Agent Guides
- Overview
- Coder
- Researcher
- Tester
- Reviewer
- Adversarial
- Architect
- Coordinator
- Analyst
- DevOps
- Documentation
- Security Auditor
MCP Tools
- Overview
- Agent Tools
- Memory Tools
- Task Tools
- Session Tools
- System Tools
- GitHub Tools
- Review Loop Tools
- Identity Tools
Recipes
- Index
- Code Review
- Doc Sync
- Multi-Agent
- Adversarial Testing
- Full-Stack Feature
- Memory Patterns
- GitHub Integration
Advanced
- Plugin Development
- Custom Agent Types
- Workflow Engine
- Vector Search Setup
- Web Dashboard
- Programmatic API
- Resource Monitoring
Reference