Back to GigaRAG

Connect an agent

Give an AI tool access to your GigaRAG Workspace, so it can search, read and write your memos while it works.

Zed

Use your memos from Zed's agent panel.

Connect with the GigaRAG CLI

One command connects Zed and every other AI tool on this machine. Signing in happens in your browser, so no key is written into any config file.

npm install -g gigarag
gigarag login
gigarag connect

Restart Zed afterwards. Nothing here expires, and gigarag connect --remove takes GigaRAG back out of everything it touched.

Sign in with GigaRAG

Connect without a key: Zed opens your browser, you sign in to GigaRAG and pick this workspace.

Zed only signs in when no Authorization header is set, so leave it out.

  1. 1.

    Open Settings, then AI, then MCP Servers, then Add Server

    Or add this to settings.json under context_servers.

    settings.json
    "context_servers": {
      "gigarag": { "url": "https://mcp.gigarag.com/mcp" }
    }
  2. 2.

    Sign in with your GigaRAG account

    Your browser opens GigaRAG. Pick the workspace to share and approve. No key is stored in the app, and the connection does not expire.

Or set it up by hand

  1. 1.

    Open your Zed settings file

    On macOS ~/Library/Application Support/Zed/settings.json, on Linux ~/.local/share/zed/settings.json, and on Windows %LOCALAPPDATA%\Zed\settings.json.

  2. 2.

    Add GigaRAG under context_servers

    settings.json
    "context_servers": {
      "gigarag": {
        "url": "https://mcp.gigarag.com/mcp",
        "headers": { "Authorization": "Bearer <api-key>" }
      }
    }

Check it worked

Send this once it is connected. An answer drawn from your workspace means the connection is live.

List my GigaRAG buckets.

Written from the official docs: Zed MCP