glider 5.7.1

dotnet tool install --global glider --version 5.7.1
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local glider --version 5.7.1
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=glider&version=5.7.1
                    
nuke :add-package glider --version 5.7.1
                    

Glider - Roslyn MCP Server

Glider is a Roslyn-powered MCP server for semantic C# analysis and refactoring.

Installation

dotnet tool install --global glider

Quick Start

Stdio Transport (default)

claude mcp add --transport stdio glider --scope project -- glider

Notes:

  • In stdio mode, glider waits for MCP input and stays quiet by default.
  • Use --verbose to emit startup/log output on stderr.

HTTP Transport

glider --transport http
# http://localhost:5001/mcp

glider --transport http --port 8080
# http://localhost:8080/mcp

Useful flags:

glider --help
glider --version
glider --verbose

Basic Workflow

  1. Call server_status to verify server/workspace state.
  2. Call load with a .sln, .slnx, or .csproj path.
  3. Resolve symbols via resolve_symbol or search_symbols.
  4. Use exact-key analysis tools (find_references, find_implementations, find_overrides, etc.).
  5. After manual edits: use sync for .cs content changes, reload for structural changes.

Capabilities

  • Solution/project lifecycle: load, sync, reload
  • Symbol discovery/info: search_symbols, resolve_symbol, get_symbol_at_position, get_symbol_info
  • References/relationships: find_references, find_overrides, find_implementations
  • Hierarchy/call graph/impact: get_type_hierarchy, get_derived_types, find_member_in_hierarchy, find_callers, get_outgoing_calls, analyze_change_impact
  • Analysis/search/source: semantic_query, search_text, get_type_info, get_method_signature, get_type_source, get_method_source
  • Refactoring/formatting: rename_symbol, move_type, move_member, organize_usings, format_document
  • External/dependency/metrics: view_external_definition, get_type_dependencies, analyze_complexity
  • Batch execution: batch

Version Expiration

Each Glider version expires 1 month after release date. Update when prompted:

dotnet tool update --global glider

Documentation

License

All Rights Reserved

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
5.7.1 38 3/13/2026
5.7.0 80 3/10/2026
5.6.1 93 3/9/2026
5.6.0 116 3/2/2026
5.6.0-preview.14 45 2/28/2026
5.5.0 98 2/27/2026
5.4.0 93 2/26/2026
5.3.0 124 2/23/2026
5.2.2 93 2/22/2026
5.2.2-preview.13 39 2/22/2026
5.2.1 109 2/12/2026
5.2.0 83 2/12/2026
5.1.1 91 2/12/2026
5.0.0 124 2/3/2026
5.0.0-preview.v5.10 47 2/3/2026
5.0.0-preview.v5.9 45 2/3/2026
5.0.0-preview.v5.8 46 2/2/2026
Loading failed

Bug Fixes:
* update IncludeProjects description to specify default value (86f6490)
Code Refactoring:
* remove DOTNET_VERSION env variable and use global.json for .NET setup (f15b584)