instant agent memory

Search your agent's memory.

GPU Brain gives every agent a durable brain it can search, read, write, and link in seconds — markdown memory through hosted MCP, CLI, and API.

search before answer write after decisions human editable
CaptureSave notes, docs, meeting decisions, links, and project context as markdown.
RecallAgents search the brain before answering instead of guessing from stale chat context.
ConnectHosted MCP, local MCP, CLI, and REST all point at the same memory.
ImproveEvery useful answer can write back new facts, links, tags, and timeline entries.
Search
find relevant memory
Read
load exact pages
Write
persist decisions
Link
connect the graph

Memory that agents can actually use

A hosted memory layer your agents can search, read, and write to in seconds.

Brain-first lookup

Agents can search memory before answering, so important context is retrieved instead of reconstructed from chat history.

🔍

Useful search results

Natural-language recall, exact keyword matches, tags, collections, and page types work together so agents can find the right source fast.

🧠

Hosted MCP server

Connect Claude, Cursor, OpenClaw-style agents, and other MCP clients to search, read, write, tag, link, and inspect memory.

🔗

Typed links & backlinks

Create relationships between notes, people, companies, and decisions so memory becomes a graph instead of a pile of files.

📥

Markdown memory browser

Humans can browse, edit, and audit the same markdown pages that agents search and update.

🏠

CLI and API access

Import folders, create pages, inspect links, run local MCP, or proxy stdio MCP to the hosted endpoint from the terminal.

The agent loop

Read memory, do the work, write back what should survive.

1

Search first

The agent checks durable memory before it answers, plans, or starts work.

2

Read sources

It opens the pages, tags, links, and timelines that explain the current situation.

3

Act with context

Responses, plans, and tool calls use the same memory through MCP, CLI, or REST.

4

Write back

New decisions, facts, links, and timeline events are saved for the next agent turn.

CLI + hosted MCP

One memory layer for local terminal workflows and remote agents.

# Search your brain
curl -X POST https://gpubrain.app.nz/api/search \
  -H "Authorization: Bearer gb_your_key" \
  -d '{"query": "notes about fundraising"}'

# Add a note
curl -X POST https://gpubrain.app.nz/api/pages \
  -H "Authorization: Bearer gb_your_key" \
  -d '{"slug": "ideas/fundraising", "title": "Fundraising notes", "body": "..."}'

# Hosted MCP JSON-RPC
curl -X POST https://gpubrain.app.nz/mcp \
  -H "Authorization: Bearer gb_your_key" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

# MCP for Claude, Cursor, or local agents
{
  "mcpServers": {
    "gpubrain": {
      "command": "gpubrain-cli",
      "args": ["mcp", "--api-url", "https://gpubrain.app.nz"],
      "env": { "GPUBRAIN_API_KEY": "gb_your_key" }
    }
  }
}

From the blog

How teams use GPU Brain to give their agents memory that lasts.

Give your agents instant memory

100 free credits on signup. Pro starts at $8 USD/month or $80 USD/year.

Create free account