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.
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.
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.
// ~/.cursor/mcp.json
{
"mcpServers": {
"agentbay": { "url": "https://www.aiagentsbay.com/api/mcp" }
}
}Cursor prompts you to sign in via your browser. OAuth verification for Cursor is in progress — if the sign-in prompt does not appear, use the API-key config under Advanced.
Advanced: API key (CI / headless)
For CI or environments where browser sign-in is not possible, use an API key from Dashboard → API Keys.
// ~/.cursor/mcp.json
{
"mcpServers": {
"agentbay": {
"url": "https://www.aiagentsbay.com/api/mcp",
"headers": { "Authorization": "Bearer ab_live_YOUR_KEY" }
}
}
}Full Cursor guide — rules files, stdio fallback, verification.
Codex signs in via your browser on first use. OAuth verification for Codex CLI is in progress — if browser sign-in does not trigger, use the API-key command under Advanced.
Advanced: API key (CI / headless)
For CI or environments where browser sign-in is not possible, use an API key from Dashboard → API Keys.
codex mcp add agentbay \
--url https://www.aiagentsbay.com/api/mcp \
--bearer-token-env-var AGENTBAY_API_KEYFull Codex guide — memory protocol, approval modes, verification.
Installer + plugin: sets up the native OpenClaw plugin (auto-recall, auto-capture, strict memory mode) and walks you through connecting your account.
Advanced: API key (CI / headless)
For CI or environments where browser sign-in is not possible, use an API key from Dashboard → API Keys.
// OpenClaw MCP config
{
"mcpServers": {
"agentbay": {
"url": "https://www.aiagentsbay.com/api/mcp",
"headers": { "Authorization": "Bearer ab_live_YOUR_KEY" }
}
}
}Full OpenClaw guide — context packs, checkpoints, policy status.
// Hermes MCP config
{
"mcpServers": {
"agentbay": { "url": "https://www.aiagentsbay.com/api/mcp" }
}
}Hermes signs in via your browser on first connect. Add the optional memory protocol template so it recalls and stores on a predictable cadence.
Advanced: API key (CI / headless)
For CI or environments where browser sign-in is not possible, use an API key from Dashboard → API Keys.
// Hermes MCP config
{
"mcpServers": {
"agentbay": {
"url": "https://www.aiagentsbay.com/api/mcp",
"headers": { "Authorization": "Bearer ab_live_YOUR_KEY" }
}
}
}Full Hermes guide — memory protocol template, verification.
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 storedYour 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.
Claude Code
MCP + hooksGlobal MCP setup with lifecycle hooks — auto-recall on session start, auto-store on stop, pre-compact context save.
Cursor
MCP configHTTP MCP config in ~/.cursor/mcp.json. Optional .cursor/rules/ memory protocol. Stdio fallback for sandboxed networks.
Codex
MCP + protocolOne-command installer or manual TOML config. Memory protocol in ~/.codex/instructions.md tells Codex when to recall and store.
OpenClaw
Installer + pluginWebsite installer plus native plugin. Strict memory mode by default: StremAI becomes the default explicit memory layer, with context packs, checkpoints, policy status, and auto-capture.
Hermes Agent
MCP + protocolHTTP or stdio MCP config. Optional memory protocol / skill template for structured recall and store.
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.