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

# MCP tools

> Connect Claude Code, Codex, Cursor, and other MCP clients to Conare memory for recall, search, save, and forget tools over Streamable HTTP.

Conare serves an MCP endpoint (Streamable HTTP) at:

```
https://api.conare.ai/mcp
```

Connect it from any MCP client and your agent gets four tools:

| Tool     | What it does                                                                            |
| -------- | --------------------------------------------------------------------------------------- |
| `recall` | Load synthesized context for the task at hand from past sessions and connected sources. |
| `search` | Narrow raw lookup over memories once you have context.                                  |
| `save`   | Persist a fact, decision, or preference for future sessions.                            |
| `forget` | Remove a memory that is wrong or no longer wanted.                                      |

## Install with the wizard

```bash theme={null}
bunx conare@latest
```

The wizard signs you in through the browser, detects local AI tools, imports chat history, configures MCP, and can enable background sync. It configures Claude Code, Codex, Cursor, Windsurf, VS Code Copilot, Cline, Zed, OpenClaw, and Antigravity. Restart the client afterwards so it reloads MCP servers.

For CI or non-interactive setup, pass a key from the [dashboard](https://conare.ai/dashboard):

```bash theme={null}
CONARE_API_KEY=cmem_your_key_here bunx conare@latest
```

## Manual MCP config

When the CLI cannot write your client's config:

```json theme={null}
{
  "mcpServers": {
    "conare": {
      "type": "http",
      "url": "https://api.conare.ai/mcp",
      "headers": {
        "Authorization": "Bearer cmem_your_key_here"
      }
    }
  }
}
```

Some clients call the URL field `serverUrl` instead of `url`.

## Native plugins

* **Claude Code** — [`conareai/claude-conare`](https://github.com/conareai/claude-conare): native plugin bundling the MCP server and a skill, with an instant project brief at session start.
* **Codex** — [`conareai/codex-conare`](https://github.com/conareai/codex-conare): project brief injected via a native SessionStart hook.

## Background sync

Install a local timer that imports new sessions every 10 minutes:

```bash theme={null}
bunx conare@latest --key cmem_your_key_here --install-sync
```
