LiveKit Agents
Give LiveKit voice agents access to your memos.
Use it in code
The snippet has your key in it so it runs as pasted. Move it to an environment variable before the code is committed or shared.
- 1.
Create the GigaRAG server and pass it to your agent session
MCP in LiveKit Agents is Python only.
from livekit.agents import mcp gigarag = mcp.MCPServerHTTP( 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.
Talk to the agent and ask it to list your GigaRAG buckets.
Written from the official docs: MCP client source