Configure GliderTrace with GitHub Copilot and VS Code.
dotnet tool install --global glider-trace.dotnet tool install --global glider-tracecommand. Make sure glider-trace is available on PATH.# bash/zsh
export PATH="$PATH:$HOME/.dotnet/tools"
which glider-trace.vscode/mcp.json in your workspace.{
"servers": {
"glider-trace": {
"type": "stdio",
"command": "glider-trace"
}
}
}http://localhost:5003/mcp.glider-trace --transport http --port 5003
{
"servers": {
"glider-trace": {
"type": "http",
"url": "http://localhost:5003/mcp"
}
}
}# In Copilot Chat, ask:
# What GliderTrace tools are available?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.