Getting started

What is Recordari?

Recordari gives your AI agents a memory that persists across sessions. Instead of losing everything when you close a conversation, your agent stores decisions and context as it works. Next session it picks up where it left off.

You connect Recordari to any MCP-compatible agent - Claude Code, Claude.ai, or any client that supports the Model Context Protocol.

Quick setup

1. Get an API key

Sign in at recordar.io, go to Dashboard → API Keys, and create a new key.

2. Connect your agent

For Claude Code, add .mcp.json at the root of your project:

{
  "mcpServers": {
    "recordari": {
      "type": "http",
      "url": "https://api.recordar.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Add .mcp.json to your .gitignore.

3. Start a session

Tell your agent:

"Orient on the [your-project] domain."

4. File your first memory

"File a memory that we're using PostgreSQL. Why it matters: all migrations and query patterns depend on this."

That's it. Next session, orient again and that decision is waiting.

Where to go next

For a full walkthrough, see the documentation.