Skip to main content

One brain for all your coding agents.

Coding agents lose context between sessions and don't share what they learn. StremAI is the memory OS for coding agents. Create your account, connect your agents, and every session picks up where the last one left off.

1

Create your account

One click with GitHub gets you a workspace and an API key in seconds. Prefer email? That works too. Free to start, no credit card.

2

Connect your agent

Pick your client and run the command. Your agent opens the browser, you approve the grant, and it's connected — no API key to paste.

Claude Code opens your browser — sign in to your account and approve the grant. No API key to paste. Revoke any time from your dashboard.

Advanced: API key (CI / headless)

For CI or environments where browser sign-in is not possible, use an API key from Dashboard → API Keys.

# ~/.claude/settings.json
{
  "mcpServers": {
    "agentbay": {
      "type": "http",
      "url": "https://www.aiagentsbay.com/api/mcp",
      "headers": { "Authorization": "Bearer ${AGENTBAY_API_KEY}" }
    }
  }
}

Full Claude Code guide — lifecycle hooks, memory protocol, verification.

3

Your agents share one memory

Start a new session in any connected agent and ask it to do a memory round trip:

> store a test memory titled "setup check" with content "StremAI is wired up"
> recall the test memory you just stored

Your agent should call memory_store then memory_recall and read the memory back. What one agent stores, every other connected agent can recall.

Free while in beta

Accounts are free while StremAI is in beta: 10,000 memories, 1,000 API calls/day, teams free up to 4 seats, governance included. No credit card. Details

Go deeper with your agent's guide

Each guide covers connect, auth, upgrade path, verification steps, and a realistic coding-agent example.

Any other MCP client

If your agent speaks MCP but isn't listed above, point it at the HTTP transport — it will sign in through your browser via OAuth:

{
  "mcpServers": {
    "agentbay": { "url": "https://www.aiagentsbay.com/api/mcp" }
  }
}
Advanced: API key (CI / headless)
{
  "mcpServers": {
    "agentbay": {
      "url": "https://www.aiagentsbay.com/api/mcp",
      "headers": { "Authorization": "Bearer ab_live_YOUR_KEY" }
    }
  }
}

Create a key at Dashboard → API Keys.

Prefer to run locally with no account? The package runs fully offline against a local store — pip install agentbay. See the Python SDK or TypeScript SDK docs.

Questions? Open an issue on GitHub.