glider 6.11.0

There is a newer version of this package available.
See the version list below for details.
{
  "servers": {
    "glider": {
      "type": "stdio",
      "command": "dnx",
      "args": ["glider@6.11.0", "--yes"]
    }
  }
}
                    
This package contains an MCP Server. The server can be used in VS Code by copying the generated JSON to your VS Code workspace's .vscode/mcp.json settings file.
dotnet tool install --global glider --version 6.11.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 6.11.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=glider&version=6.11.0
                    
nuke :add-package glider --version 6.11.0
                    

Glider - Roslyn MCP Server

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

Install

Prerequisite: .NET 10 SDK.

dotnet tool install --global glider

If install fails, run dotnet --version first. If dotnet is missing or below 10, install .NET 10 from: https://dotnet.microsoft.com/download/dotnet/10.0

Run Modes

Stdio (default)

glider

HTTP

glider --transport http

Default HTTP MCP endpoint: http://localhost:5001/mcp

Useful flags:

glider --default-timeout 30m
glider --port 8080
glider --verbose
glider --help
glider --version

--default-timeout supports ms, s, and m suffixes. Use 0 to disable server-side timeout.

Configure Your MCP Client

Use installation and host-specific setup guides on the website:

Capabilities

  • Solution/project lifecycle: load, sync, reload
  • Discovery and inspection: find_code, search_symbols, resolve_symbol, get_symbol_info, get_symbol_at_position
  • References and hierarchy: find_references, find_overrides, find_implementations, get_type_hierarchy, find_callers
  • Diagnostics and code search: get_diagnostics, diagnostic_hotspots, semantic_query, search_text
  • Refactoring and edits: rename_symbol, move_type, move_member, organize_usings, format_document, write_file
  • Dependency and impact analysis: analyze_change_impact, get_cascade_impact, get_project_graph, find_package_usages
  • Batch execution: batch

For general code navigation, find_code is the recommended first tool to try. For deeper operational guidance and tool-selection heuristics, use the repository docs.

Version Expiration

Each Glider version expires 1 month after release date.

dotnet tool update --global glider

Troubleshooting

  • If glider is not found after install, ensure ~/.dotnet/tools is on PATH.
  • If load fails with MSBuild initialization errors, rerun with --verbose and inspect returned diagnostics.
  • On Windows, stable Visual Studio installs are preferred for legacy/.NET Framework solutions.

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.13.0 89 5/20/2026
6.13.0-preview.16 49 5/18/2026
6.12.0 164 5/15/2026
6.11.4-preview.15 49 5/15/2026
6.11.4-preview.14 53 5/15/2026
6.11.3 162 5/12/2026
6.11.3-preview.13 52 5/14/2026
6.11.3-preview.12 40 5/14/2026
6.11.3-preview.11 55 5/12/2026
6.11.2 18,115 5/1/2026
6.11.1 90 5/1/2026
6.11.0 196 4/26/2026
6.11.0-preview.10 53 4/26/2026
6.11.0-preview.9 56 4/25/2026
6.11.0-preview.8 50 4/25/2026
6.10.1 148 4/23/2026
6.10.0 167 4/21/2026
6.9.0 148 4/17/2026
6.8.1-preview.2 61 4/17/2026
6.8.1-preview.1 55 4/17/2026
Loading failed

## [6.11.0] - 2026-04-26
Features:
- improve tool routing hints and mcp package metadata (
5a7ab8)
Bug Fixes:
- sync MCP manifest during pack (
224378)
- address codex review feedback (
10227e)
- return not-found response for unresolved find_code symbol routing (
a2095e)
- emit MCP manifest without utf-8 bom (
2850cd)
- preserve unicode while emitting mcp manifest (
720d40)
- remove unnecessary clarification and update setup links in README (
7f41ec)