> ## 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

> Verbinde Claude Code, Codex, Cursor und weitere MCP-Clients mit Conare Memory für recall-, search-, save- und forget-Tools über Streamable HTTP.

Conare bietet einen MCP-Endpunkt (Streamable HTTP) an unter:

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

Verbinde ihn aus jedem MCP-Client und dein Agent bekommt vier Tools:

| Tool     | Was es tut                                                                                                 |
| -------- | ---------------------------------------------------------------------------------------------------------- |
| `recall` | Synthetisierten Kontext für die anstehende Aufgabe aus vergangenen Sessions und verbundenen Quellen laden. |
| `search` | Enger, roher Lookup über Memories, sobald du Kontext hast.                                                 |
| `save`   | Ein Fakt, eine Entscheidung oder eine Präferenz für künftige Sessions persistieren.                        |
| `forget` | Eine Memory entfernen, die falsch ist oder nicht mehr gewünscht wird.                                      |

## Mit dem Wizard installieren

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

Der Wizard meldet dich per Browser an, erkennt lokale KI-Tools, importiert Chatverlauf, konfiguriert MCP und kann Background-Sync aktivieren. Er konfiguriert Claude Code, Codex, Cursor, Windsurf, VS Code Copilot, Cline, Zed, OpenClaw und Antigravity. Starte den Client anschließend neu, damit er die MCP-Server neu lädt.

Für CI oder nicht-interaktives Setup übergib einen Key aus dem [Dashboard](https://conare.ai/dashboard):

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

## Manuelle MCP-Konfig

Wenn das CLI die Konfig deines Clients nicht schreiben kann:

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

Manche Clients nennen das URL-Feld `serverUrl` statt `url`.

## Native Plugins

* **Claude Code** – [`conareai/claude-conare`](https://github.com/conareai/claude-conare): natives Plugin, das MCP-Server und ein Skill bündelt, mit einem sofortigen Projekt-Brief am Session-Start.
* **Codex** – [`conareai/codex-conare`](https://github.com/conareai/codex-conare): Projekt-Brief per nativem SessionStart-Hook injiziert.

## Background-Sync

Installiere einen lokalen Timer, der neue Sessions alle 10 Minuten importiert:

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