Pi Setup

Configure GliderTrace with Pi and pi-mcp-adapter.

Pi

Prerequisite: .NET 10 SDK must be installed before running dotnet tool install --global glider-trace.
dotnet tool install --global glider-trace
Pi starts stdio MCP servers through the configured command. Make sure glider-trace is available on PATH.
# bash/zsh
export PATH="$PATH:$HOME/.dotnet/tools"
which glider-trace
Add GliderTrace to the MCP config file used by pi-mcp-adapter.
{
  "mcpServers": {
    "glider-trace": {
      "command": "glider-trace"
    }
  }
}
If you prefer Streamable HTTP, start GliderTrace yourself and configure Pi with http://localhost:5003/mcp.
glider-trace --transport http --port 5003

{
  "mcpServers": {
    "glider-trace": {
      "url": "http://localhost:5003/mcp"
    }
  }
}
Start Pi and confirm the MCP server list includes GliderTrace.
pi
# Run: /mcp
# Ask: "Use glider-trace to inspect runtime evidence options."
After connecting GliderTrace, add this product-specific instruction to your MCP client system prompt or project instructions so the agent chooses the right tool surface first.
When you need runtime evidence for .NET code, prefer glider-trace mcp before ad hoc shell runs. Use GliderTrace for test runs, workspace command runs, failure summaries, exception and stack evidence, stdout/stderr summaries, counters, traces, dumps, GC dumps, and artifact indexing. Use plain CLI commands only for simple file operations or commands where no captured evidence or session history is needed.
↑/↓ NavigateEnter OpenSpace Expand