> ## Documentation Index
> Fetch the complete documentation index at: https://docs.memanto.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Continue Integration

> Give Continue.dev persistent, cross-session memory with Memanto — via the CLI connector or as an MCP server.

# Continue + Memanto

<Icon icon="forward-step" size={48} />

Connect [Continue.dev](https://continue.dev) to Memanto so it can store and recall persistent memory across sessions.

## Connect via CLI (recommended)

```bash theme={null}
memanto connect continue
```

This installs a Continue-specific instruction file and the `memanto-memory` skill into your project. Add `--global` to install system-wide:

```bash theme={null}
memanto connect continue --global
```

## Connect via MCP

Continue is an MCP client, so you can alternatively register Memanto as an MCP server. Edit `~/.continue/config.json`:

```json theme={null}
{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "memanto-mcp",
          "env": {
            "MOORCHEH_API_KEY": "mch_xxxxxxxxxxxxxxxxxx",
            "MEMANTO_DEFAULT_AGENT_ID": "continue-workspace"
          }
        }
      }
    ]
  }
}
```

See the [MCP integration guide](/integrations/mcp) for the full server reference.

## Next Steps

* [CLI: connect command](/cli/connect/connect)
* [MCP Integration](/integrations/mcp)
* [Memory Types Reference](/reference/memory-types)
