Cursor Setup

Configure Glider with Cursor IDE.

Cursor

dotnet tool install --global glider
Cursor launches stdio MCP servers via command. Make sure glider is available on PATH.
# bash/zsh
export PATH="$PATH:$HOME/.dotnet/tools"
which glider
Create .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": []
    }
  }
}
Create/modify: macOS/Linux ~/.cursor/mcp.json, Windows %USERPROFILE%\.cursor\mcp.json.
{
  "mcpServers": {
    "glider": {
      "command": "glider",
      "args": []
    }
  }
}