Cursor Setup

Configure Glider with Cursor IDE.

Cursor

Prerequisite: .NET 10 SDK must be installed before running dotnet tool install --global glider.
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": ["--default-timeout", "30m"]
    }
  }
}
Create/modify: macOS/Linux ~/.cursor/mcp.json, Windows %USERPROFILE%\.cursor\mcp.json.
{
  "mcpServers": {
    "glider": {
      "command": "glider",
      "args": ["--default-timeout", "30m"]
    }
  }
}
If you prefer Streamable HTTP, start Glider yourself and configure Cursor with http://localhost:5001/mcp.
glider --transport http --default-timeout 30m

{
  "mcpServers": {
    "glider": {
      "url": "http://localhost:5001/mcp"
    }
  }
}
↑/↓ NavigateEnter OpenSpace Expand