Claude Code Setup

Configure Glider with Claude Code CLI.

Claude Code

Glider is a .NET global tool. If you do not have .NET installed yet, install the .NET SDK first.
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
Project-scoped servers only run when you are in that project. See Claude Code MCP docs: docs.anthropic.com/en/docs/claude-code/mcp.
claude mcp add --transport stdio glider --scope project -- glider
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
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?"