Skip to main content

IDE Integrations Overview

Connect MEMANTO to your favorite AI coding tools and IDEs.

Supported Tools

MEMANTO integrates with 13+ AI coding assistants:
ToolTypeStatus
Claude CodeIDE Extension✓ Supported
CursorIDE✓ Supported
ClineIDE Extension✓ Supported
WindsurfIDE✓ Supported
ContinueIDE Extension✓ Supported
CodexIDE✓ Supported
CodeiumIDE Extension✓ Supported
Gemini CLICLI✓ Supported
GitHub CopilotIDE Extension✓ Supported
OpenCodeIDE✓ Supported
GooseIDE✓ Supported
RooIDE✓ Supported
AntigravityIDE✓ Supported
AugmentIDE✓ Supported

What Integrations Enable

Once connected, tools can:

1. Store Development Context

"User prefers TypeScript and strict type checking"
"Project uses React 18 with hooks"
"API endpoints follow REST conventions"

2. Recall Past Decisions

Query: "Why did we choose PostgreSQL?"
Result: "Chose PostgreSQL to support JSON queries efficiently"

3. Access Memory APIs

Full programmatic access to:
  • Store memories
  • Recall memories
  • Generate answers
  • Manage sessions

4. Continuous Learning

Tools learn from previous sessions and carry context forward.

Quick Start

Step 1: Install & Configure MEMANTO

pip install memanto
memanto  # Configure with API key

Step 2: Create Agent

memanto agent create dev-assistant
memanto agent activate dev-assistant

Step 3: Connect Your Tool

# For Claude Code
memanto connect claude-code

# For Cursor
memanto connect cursor

# For Windsurf
memanto connect windsurf

Step 4: Start Using

Your tool now has access to memories!

Integration Patterns

Single Tool Integration

Connect one tool:
memanto connect claude-code
Benefits:
  • Simple setup
  • Clear memory isolation
  • Perfect for single-person projects

Team Integration

Connect multiple tools:
memanto connect claude-code
memanto connect cursor
memanto connect windsurf
Benefits:
  • Team shared context
  • Cross-tool consistency
  • Better collaboration

Multi-Environment

Different agents for different environments:
# Development
memanto agent create dev-assistant
memanto connect claude-code --to dev-assistant

# Production
memanto agent create prod-assistant
memanto connect cursor --to prod-assistant

Use Cases

Learning New Codebase

Tool remembers:
  • Architecture decisions
  • Naming conventions
  • Common patterns
  • “Why” behind decisions

Multi-Session Development

Tool carries context across days:
  • Open issues
  • In-progress features
  • Code review feedback
  • Design decisions

Team Onboarding

New team members benefit from:
  • Accumulated project knowledge
  • Decision history
  • Best practices
  • Common pitfalls to avoid

Cross-Project Knowledge

Tool learns and applies:
  • Patterns from Project A to Project B
  • Solutions to common problems
  • Team conventions
  • Lessons learned

Configuration

Local Scope

memanto connect claude-code
# Installs in: project/.claude/memanto
# Only this project can access

Global Scope

memanto connect claude-code --global
# System-wide installation
# All projects can access

Force Reinstall

memanto connect claude-code --force
# Overwrites existing installation

Management

List Connections

memanto connect list
Shows all connected tools and their scope.

Remove Connection

memanto connect remove claude-code
Disconnects a tool (memories remain).

Connect Multiple

memanto connect multi
Interactive selection of multiple tools.

Tips & Tricks

Share Context Across Tools

# Same agent for all tools
memanto connect claude-code
memanto connect cursor
memanto connect windsurf

# All three access same memories

Per-Tool Memory

# Different agents for different tools
memanto agent create claude-memory
memanto agent create cursor-memory

memanto connect claude-code --to claude-memory
memanto connect cursor --to cursor-memory

# Separate memory for each tool

Backup Memories

# Export before disconnecting
memanto memory export

# All memories saved locally

Next Steps


Integrations let MEMANTO work within your favorite development tools!