glider 3.6.0

dotnet tool install --global glider --version 3.6.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 3.6.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=glider&version=3.6.0
                    
nuke :add-package glider --version 3.6.0
                    

Glider - Roslyn MCP Server

A Roslyn-powered MCP (Model Context Protocol) server that provides C# code analysis capabilities to LLMs like Claude.

Installation

dotnet tool install --global glider

Quick Start

Stdio Transport (Default)

For use with MCP clients like Claude Code:

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

HTTP Transport

For remote access or web-based scenarios:

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

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

# Print version
glider --version
glider -v

Features

  • Solution Management: Load C# solutions and standalone projects

  • Symbol Search: Find references, implementations, and types with wildcards (find_usages, find_implementation, find_types)

  • Type Analysis: Inspect type members, base types, and interfaces

  • External Source: View source code of NuGet/framework types via SourceLink or decompilation

  • Source Extraction: Get bounded source for types/methods (get_type_source, get_method_source)

  • Symbol Discovery: Search symbols and get stable keys (search_symbols, get_symbol_at_position, get_symbol_info)

  • Batch Operations: Run multiple tools in a single request via batch

  • Summary-Only Mode: For large queries, some tools support summaryOnly to return counts/grouping without full lists

  • Method Analysis: Get method signatures, parameters, and return types

  • Refactoring: Semantically rename symbols, move types, and move members across the solution

  • Diagnostic-Driven Code Fixes: List and apply code fixes with preview/diff (get_code_fixes, apply_code_fix)

  • Formatting: Organize usings and format documents with preview/diff (organize_usings, format_document)

  • Diagnostics: Retrieve compiler diagnostics (errors, warnings, info)

  • Dependency Analysis: Analyze what types a type uses and what uses it

  • Code Metrics: Analyze complexity metrics like cyclomatic complexity and LOC

  • Multi-Transport: Supports stdio (local) and HTTP (remote) protocols

Important: Version Expiration

Each version of Glider expires 1 month after release. When your version expires:

dotnet tool update --global glider

You'll receive a warning 7 days before expiration.

Documentation

Full documentation and guides: https://glidermcp.com

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
3.6.0 0 1/17/2026
3.5.0 33 1/15/2026
3.4.0 37 1/13/2026
3.4.0-preview.instructions.2 32 1/15/2026
3.3.1 33 1/13/2026
3.3.0 82 1/12/2026
3.2.0 79 1/12/2026
3.1.0 80 1/12/2026
3.0.0 85 1/8/2026
2.0.0 83 1/8/2026
1.1.0 80 1/7/2026
1.0.0 89 12/31/2025
0.3.0 86 12/30/2025
0.2.1 87 12/30/2025
0.2.0 87 12/30/2025

### Features
* add organize_usings and format_document tools (817347b)
* Guard relative-path conversion against prefix collisions (38a633b)
* implement get_code_fixes and apply_code_fix tools (4951c56)
* implement progress notifications, create response helpers (362dcab)
* implement Token-Safe Output Shaping (096d1fa)
* implement workspace synchronization sync_documents tool (dcb7c93)
### Bug Fixes
* correct assertion for success property in external source test (f5966dd)
* fix an infinite loop in diff generation (c30760c)
* set timeout for build-and-test job in release workflow (d9f23ff)
### Code Refactoring
* centralize unified diff generation (c9edf41)