- Trace Grok sessions to record session, turn, model call, and tool spans in Braintrust.
- Connect to Braintrust MCP to work with Braintrust projects, experiments, logs, and other data from Grok.
Trace Grok sessions
Thetrace-grok plugin passes your interactions with Grok to bt, which in turn uses a background process to build and deliver the trace to Braintrust.
Grok continues to communicate directly with its model provider, and tracing failures do not stop your Grok session.
Set up tracing
trace-grok is already installed, follow Update the tracing plugin.Install Grok
Install and authenticate bt
bt CLI quickstart to install bt v0.19.3 or later, authenticate, and set your active context.Enable tracing
- Installs (or updates), trusts, and enables
trace-grok. Trust applies to the plugin’s executable hooks, not to your project folders. - Writes
~/.grok/braintrust.json, which records whether tracing is enabled and which project receives traces.
bt trace enable.Load the tracing hooks
/reload-plugins inside the session before sending your first prompt./reload-plugins at the start of each session for traces to be reported, even after restarting. To automate this, alias Grok to run the command on launch with alias grok="grok /reload-plugins" until the issue is resolved.Log a test trace
What Braintrust traces
Grok traces in Braintrust include:- Session spans with the session ID, local username, available workspace and permission settings, Grok and plugin versions, and Git repository metadata when available.
- Turn spans with prompts, visible assistant responses, and available usage metrics.
- Reconstructed model call spans with available responses and reasoning. The first model call can also include the recovered system prompt and first user message.
- Tool spans with available inputs, outputs, timing, outcomes, and errors.
braintrust.plugin.grok.
Grok does not expose complete provider requests or native boundaries for every model call. Usage belongs to the whole turn, not individual model calls. The turn’s usage is also attached to the final reconstructed model span with usage_scope: "turn". Raw cost_usd_ticks values are not converted to estimated dollar costs.
Common workflows
Change saved tracing settings
Change saved tracing settings
bt trace enable grok with the corresponding options. Running bt switch does not change the saved tracing configuration.To add root-span metadata, pass --additional-metadata '<JSON>' to bt trace enable for future sessions. Standard session metadata takes precedence when keys conflict.Resume a Grok session
Resume a Grok session
/reload-plugins in the resumed session before continuing.Stop tracing Grok sessions
Stop tracing Grok sessions
bt trace disable grok to uninstall the published tracing plugin and remove its tracing configuration. Saved bt profiles and credentials are preserved. Restart Grok afterward.The command leaves local or custom plugins with the same name installed.Update the tracing plugin
To update the plugin, follow these steps:Update bt
bt to the latest version and complete the applicable migrations.Update the tracing plugin
bt trace update updates the installed plugin without changing your saved tracing configuration. The command requires the published Braintrust plugin and does not replace local or custom installations.Restart and verify Grok
/reload-plugins. Run a short session and confirm that its trace appears on the Logs page in the intended Braintrust project.Troubleshooting tracing
First, runbt trace doctor grok. Then, review the following:
The tracing plugin is missing or disabled
The tracing plugin is missing or disabled
grok plugin list --json and confirm that trace-grok is installed and enabled. If it is missing or broken, run:/reload-plugins in Grok afterward. The doctor report checks tracing settings and authentication, not whether Grok loaded the hooks.Traces do not appear after setup
Traces do not appear after setup
/reload-plugins in the active Grok session. Confirm that bt is available in the environment that launches Grok. If necessary, set BT_BIN to the executable’s path.Run bt trace doctor grok and confirm that tracing is enabled and routed to the intended project.If authentication succeeds but traces do not appear, confirm that your account has permission to write logs to the selected project.For authentication, tracing destination, or endpoint problems, see bt trace troubleshooting and the CLI migration troubleshooting guide.Tracing failures do not interrupt the Grok session.Grok uses an unexpected configuration directory
Grok uses an unexpected configuration directory
~/.grok/braintrust.json. An explicit BT_DAEMON_CONFIG override changes the tracing file path. If you use it, supply the same path when enabling tracing and launching Grok.Traces use unexpected settings
Traces use unexpected settings
TRACE_TO_BRAINTRUST, BRAINTRUST_PROJECT, or BRAINTRUST_ADDITIONAL_METADATA from the agent’s environment to override the saved tracing settings.For environment variables accepted by the bt commands themselves, see bt trace.Connect to Braintrust MCP
The Braintrust MCP server lets Grok query and update Braintrust data. MCP is configured independently from the tracing plugin.Set up the MCP server
Install Grok
Add the Braintrust MCP server
~/.grok/config.toml. To configure only the current project, add --scope project to write .grok/config.toml instead. See Grok’s MCP documentation for scope and configuration details.See Authentication for API-key setup and Endpoints for EU and self-hosted URLs.Authenticate
/mcps, select the Braintrust MCP server, and press i to start OAuth authentication. Complete the sign-in in your browser.MCP authentication is separate from bt login, which authenticates the CLI and tracing integration.Verify the connection
grok mcp doctor braintrust to check the connection. In Grok, ask it to list your recent Braintrust projects and confirm that it uses the Braintrust MCP server.Use MCP tools
Once connected, Grok can query logs, compare experiments, work with datasets, and use other Braintrust tools. For example:- “Show me my recent Braintrust experiments.”
- “Query the last 10 logged requests with errors.”
- “Compare accuracy scores between my two latest experiments.”
Troubleshooting MCP
Braintrust MCP tools do not appear
Braintrust MCP tools do not appear
grok mcp list to confirm that the Braintrust server is registered. Use /mcps in Grok to enable the server or refresh it after configuration changes.If Grok loads an unexpected server, run grok inspect to see its configuration source. Grok can also load MCP definitions from Claude Code and Cursor configurations. See Grok’s MCP documentation for configuration precedence.MCP authentication or connection fails
MCP authentication or connection fails
grok mcp doctor braintrust to diagnose the connection. To authenticate again, enter /mcps in Grok, select the Braintrust MCP server, and press i to start the OAuth flow.For authentication methods, regional and self-hosted endpoints, and network requirements, see the Braintrust MCP guide.Next steps
- Learn the CLI: See the full
bt tracereference. - Run evaluations: Follow the evaluation guide.
- Explore MCP tools: See the Braintrust MCP tool reference.
- Browse the source: View the coding-agent plugins repository.