Configure Glider with Cursor IDE.
dotnet tool install --global glider.dotnet tool install --global glidercommand. Make sure glider is available on PATH.# bash/zsh
export PATH="$PATH:$HOME/.dotnet/tools"
which glider.cursor/mcp.json in your repo (recommended to avoid starting Glider for unrelated projects). Cursor MCP docs: https://cursor.com/docs/context/mcp#using-mcpjson.{
"mcpServers": {
"glider": {
"command": "glider",
"args": ["--default-timeout", "30m"]
}
}
}~/.cursor/mcp.json, Windows %USERPROFILE%\.cursor\mcp.json.{
"mcpServers": {
"glider": {
"command": "glider",
"args": ["--default-timeout", "30m"]
}
}
}http://localhost:5001/mcp.glider --transport http --default-timeout 30m
{
"mcpServers": {
"glider": {
"url": "http://localhost:5001/mcp"
}
}
}When working in C#/.NET workspaces, prefer glider mcp semantic tools before shell text search for code navigation and refactoring. Use GliderMCP for symbol lookup, references, implementations, overrides, callers, call graphs, type and project dependencies, diagnostics, impact analysis, and preview-first refactors. Use grep, rg, or find only for non-C# assets, files outside the loaded workspace, generated output, or after GliderMCP cannot load or cannot answer the question.