Claude Code Setup

Configure Glider with Claude Code CLI.

Claude Code

Prerequisite: .NET 10 SDK must be installed before running dotnet tool install --global glider.
dotnet tool install --global glider
Most MCP clients can run glider directly if your .NET tools directory is on PATH. If you prefer, you can also use the full path to the executable (shown below).
# bash/zsh
export PATH="$PATH:$HOME/.dotnet/tools"
which glider
Use stdio for local Glider setup. Project-scoped servers only run when you are in that project. See Claude Code MCP docs: code.claude.com/docs/en/mcp.
claude mcp add --transport stdio glider --scope project -- glider --default-timeout 30m
Global config runs in every Claude Code project. Use this only if you want Glider available everywhere.
claude mcp add --transport stdio glider --scope user -- glider --default-timeout 30m
The GliderMCP plugin is published from glidermcp/glidermcp.com and bundles the product skill plus stdio MCP config.
/plugin marketplace add glidermcp/glidermcp.com
/plugin install glidermcp@glidermcp
If you prefer Streamable HTTP, start Glider yourself and point Claude Code at http://localhost:5001/mcp. Use only one glider server entry unless you intentionally want separate stdio and HTTP configs.
# Terminal 1
glider --transport http --default-timeout 30m

# Terminal 2
claude mcp add --transport http --scope project glider http://localhost:5001/mcp
Start a new Claude Code session and check for Glider tools. If you need startup output/logs, re-add Glider with --verbose (e.g. ... -- glider --verbose).
claude
# Then ask: "What Glider tools are available?"
After connecting GliderMCP, add this product-specific instruction to your MCP client system prompt or project instructions so the agent chooses the right tool surface first.
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.
↑/↓ NavigateEnter OpenSpace Expand