Configure GliderTrace with Cursor IDE.
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.cursor/mcp.json in your repo. This keeps runtime evidence scoped to the project where the client starts. Cursor MCP docs: https://cursor.com/docs/context/mcp#using-mcpjson.{
"mcpServers": {
"glider-trace": {
"command": "glider-trace"
}
}
}~/.cursor/mcp.json, Windows %USERPROFILE%\.cursor\mcp.json.{
"mcpServers": {
"glider-trace": {
"command": "glider-trace"
}
}
}http://localhost:5003/mcp.glider-trace --transport http --port 5003
{
"mcpServers": {
"glider-trace": {
"url": "http://localhost:5003/mcp"
}
}
}.mcp.json, Codex .codex/config.toml (trusted projects), Cursor .cursor/mcp.json, or VS Code .vscode/mcp.json. Include portable config files in version control, or copy local config files into each worktree. Git does not copy ignored files. Use absolute paths only when you intentionally want one fixed checkout, such as a global Claude Desktop configuration.git rev-parse --show-toplevel in the client terminal, then ask trace_status for the server workspace. Confirm that the loaded solution or workspace belongs to that worktree before you query or change code. For a wrong root, restart GliderTrace with --workspace set to the intended worktree. git rev-parse --show-toplevelWhen 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.