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.

Gemini Code Assist

Use your memos from Gemini Code Assist agent mode in VS Code.

Connect with the GigaRAG CLI

Gemini Code Assist reads the same settings file as another tool, so the CLI sets both up at once. Signing in happens in your browser, so no key is written into any config file.

npm install -g gigarag
gigarag login
gigarag connect gemini-cli

Paste what it prints, then restart Gemini Code Assist afterwards. Nothing here expires, and gigarag connect --remove takes GigaRAG back out of everything it touched.

Or set it up by hand

  1. 1.

    Add GigaRAG to your Gemini settings

    The key must be httpUrl. url means the older SSE transport.

    ~/.gemini/settings.json
    {
      "mcpServers": {
        "gigarag": {
          "httpUrl": "https://mcp.gigarag.com/mcp",
          "headers": { "Authorization": "Bearer <api-key>" }
        }
      }
    }
  2. 2.

    Reload VS Code and use agent mode

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: Agent mode in Code Assist