
Glider
- 16 repo stars
- Updated July 27, 2026
- glidermcp/glidermcp.com
Glider is a MCP server that exposes Roslyn-powered C# code analysis to LLMs over stdio or HTTP.
About
Glider is a Model Context Protocol server that wraps Microsoft Roslyn so AI coding agents can analyze C# with the same semantic model the compiler uses, not shallow text parsing. Developers shipping.NET APIs, game backends, or enterprise services can wire Glider into Claude Code, Cursor, or other MCP clients when they need symbol resolution, project-aware context, or safer refactors across large solutions. The server publishes version 6.4.2 with a NuGet stdio package and also supports HTTP transports for teams that host tools centrally. Use it during active backend work when your agent must reason about namespaces, types, and project references the way Visual Studio does. It is an integration layer, not a full test or review pipeline on its own.
- Roslyn-powered C# analysis exposed as MCP tools for LLM agents
- stdio transport via NuGet package glider (registry install)
- HTTP transport option for remote or shared agent setups
- Targets LLM workflows that need compiler-grade C# understanding
Glider by the numbers
- Data as of Jul 28, 2026 (Skillselion catalog sync)
claude mcp add Glider -- npx -y glidermcp/glidermcp.comAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 16 |
|---|---|
| Last updated | July 27, 2026 |
| Repository | glidermcp/glidermcp.com ↗ |
What it does
Give your coding agent Roslyn-accurate C# semantics, symbols, and refactor context without leaving the editor.
Who is it for?
Best when you're on.NET and want MCP-connected agents with real Roslyn semantics during backend implementation.
Skip if: Skip if you're on non-C# stacks or developers and only need generic linting without a.NET toolchain.
What you get
After you register Glider, your agent can query compiler-backed C# analysis while you implement or change .NET backend code.
- MCP-connected Roslyn C# analysis during agent sessions
- stdio or HTTP transport wiring documented in server metadata
- Compiler-grade symbol and project context for agent prompts
By the numbers
- Server version 6.4.2
- NuGet package identifier glider with stdio transport
- Supports stdio and HTTP transports per server description
README.md
glidermcp.com (Public Support Shell)
This repository is the public support and issue-intake front door for the Glider MCP product family.
Current repository role
- Public issue reporting and support triage
- Public project links and migration guidance
- Sponsorship metadata
This repository is intentionally minimal.
Where to file issues
Please open issues in this repository and select the relevant product in the issue template:
glider(C# MCP)glider-trace(runtime evidence MCP server)tglider(TypeScript MCP)glidermcp-web(website/docs UX)
Quick links
- Product site: https://glidermcp.com
- Glider NuGet package: https://www.nuget.org/packages/glider
- GliderTrace NuGet package: https://www.nuget.org/packages/glider-trace
- TGlider NPM package: https://www.npmjs.com/package/tglider
Plugin and config assets
This repository ships root-level marketplace and config assets for agent clients:
plugins/glidermcp/- C# semantic navigation plugin.plugins/glider-trace/- .NET runtime evidence plugin.plugins/tglider/- TypeScript and JavaScript semantic navigation plugin..claude-plugin/marketplace.json- Claude Code marketplace entry..agents/plugins/marketplace.json- Codex marketplace entry.install/claude-code/.mcp.json- direct Claude Code project config template.install/codex/config.toml- direct Codex global config snippet.
Claude Code plugin install:
claude plugin marketplace add glidermcp/glidermcp.com
claude plugin install glidermcp@glidermcp
claude plugin install glider-trace@glidermcp
claude plugin install tglider@glidermcp
Codex plugin install:
codex plugin marketplace add glidermcp/glidermcp.com
codex
# Open /plugins and install glidermcp, glider-trace, or tglider.
Notes
- Pull requests with runtime/product code are not accepted in this repository.
- If maintainers need implementation details, they will mirror or transfer context into the private monorepo.
Recommended MCP Servers
How it compares
Roslyn-backed MCP integration for C#, not a generic multi-language agent skill.
FAQ
Who is Glider for?
Glider is for developers and agent users working in C# who need MCP-accessible, compiler-grade code intelligence.
When should I use Glider?
Use Glider in the Build phase when your agent must navigate, analyze, or refactor.NET backend code with Roslyn accuracy.
How do I add Glider to my agent?
Install the glider NuGet MCP package for stdio or point your MCP client at the server’s HTTP endpoint per the glidermcp.com repository docs.