Integrations
Kilo
Integrate memories.sh with Kilo coding assistant.
Kilo is a coding assistant that reads project context from the .agents/ directory and supports MCP servers.
Quick Setup
cd your-project
memories initThis automatically:
- Sets up your local memory store
- Configures MCP for supported tools
- Generates instruction files with your existing memories
Manual Setup
Option 1: Generated File
memories generate agentsThis creates the canonical .agents/ directory that Kilo reads for project context.
Option 2: MCP Server
Add memories.sh to Kilo's MCP configuration. Create or edit .kilo/mcp.json:
{
"mcpServers": {
"memories": {
"command": "npx",
"args": ["-y", "@memories.sh/cli", "serve"]
}
}
}Recommended: Use Both
- Generated file — Provides instructions Kilo always sees
- MCP server — Gives Kilo live access to search, recall, and add memories
Syncing Kilo Config
To sync your Kilo configuration across machines:
# On your main machine
memories files ingest
# On a new machine
memories files apply --global --force