glider 5.7.0

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global glider --version 5.7.0
                    
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.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=glider&version=5.7.0
                    
nuke :add-package glider --version 5.7.0
                    

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
6.9.0 59 4/17/2026
6.8.1-preview.2 39 4/17/2026
6.8.1-preview.1 34 4/17/2026
6.7.0 118 4/14/2026
6.6.1 190 4/10/2026
6.6.0 139 4/7/2026
6.5.0 155 4/3/2026
6.5.0-preview.32 51 4/3/2026
6.5.0-preview.31 54 4/3/2026
6.5.0-preview.30 47 4/2/2026
6.4.3 116 4/2/2026
6.4.2 127 4/2/2026
6.4.1 123 4/1/2026
6.4.0 99 4/1/2026
6.3.1 109 4/1/2026
6.3.0 112 4/1/2026
6.2.1 122 3/31/2026
6.2.0 109 3/31/2026
5.7.0 143 3/10/2026
Loading failed

Features:
* improve server instructions and tools descriptions (a078f8e)