Integrations
Integrations
Setup guides for connecting memories.sh to your AI coding tools.
memories.sh works with every major AI coding tool. There are two ways to integrate:
- Generated files — Run
memories generate <target>to create a native config file the tool reads automatically - MCP server — Connect the tool to the memories.sh MCP server for live, bidirectional access
Most tools support both methods. Use generated files for simplicity, MCP for live access, or both together.
Supported Tools
| Tool | Generated File | MCP Support |
|---|---|---|
| Claude Code | CLAUDE.md | Yes |
| Cursor | .cursor/rules/memories.mdc | Yes |
| GitHub Copilot | .github/copilot-instructions.md | Yes |
| Windsurf | .windsurf/rules/memories.md | Yes |
| Cline | .clinerules/memories.md | Yes |
| Roo | .roo/rules/memories.md | Yes |
| Gemini | GEMINI.md | No |
The agents target (AGENTS.md) works with Amp, Codex, Goose, Kilo, Kiro, and OpenCode.
Quick Setup
For any tool, the fastest path is:
# Generate the config file
memories generate <target>
# Or generate for all tools at once
memories generate allFor MCP integration, add to the tool's MCP config:
{
"mcpServers": {
"memories": {
"command": "memories",
"args": ["serve"]
}
}
}See each tool's page for specific instructions.