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.

v0

Give v0 your memos while it generates. The generated app cannot call GigaRAG itself.

Sign in with GigaRAG

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

  1. 1.

    Add the server as below, but choose OAuth

  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.

    In the prompt form, open the + menu, then MCPs, and add a custom server

  2. 2.

    Paste this as the server URL

    Server URL
    https://mcp.gigarag.com/mcp
  3. 3.

    Choose Bearer Token and paste this

    Bearer Token
    <api-key>

Or add it with the v0 Platform API

  1. 1.

    Create the server for your account

    Set scope to team to share it with your v0 team.

    await v0.mcpServers.create({
      name: 'gigarag',
      url: 'https://mcp.gigarag.com/mcp',
      scope: 'user',
      auth: { type: 'bearer', token: '<api-key>' },
    });

Check it worked

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

Ask v0 to list your GigaRAG buckets.

Written from the official docs: MCP in v0, Create MCP server API