Roslyn-powered C# code analysis server for LLMs. Supports stdio and HTTP transports.
{
"mcpServers": {
"io-github-glidermcp-glider": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Roslyn-powered C# code analysis server for LLMs. Supports stdio and HTTP transports.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 1 days ago. 12 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.
MCP Security Weekly
Get CVE alerts and security updates for io.github.glidermcp/glider and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Glider is a Roslyn-powered Model Context Protocol (MCP) server for semantic C# code analysis and refactoring in MCP clients (for example, Claude Code).
For full documentation and setup guides, see glidermcp.com.
symbolKey) and use them across tool calls.server_status, get_diagnostics, diagnostic_hotspotsload, reload, sync, get_file_contents, write_fileresolve_symbol, search_symbols, get_symbol_at_position, get_symbol_infofind_unused_symbols, find_unused_parameters, find_references, find_overrides, find_implementationsget_type_info, get_method_signature, get_type_source, get_method_sourcesemantic_query, search_textget_type_hierarchy, get_derived_types, find_member_in_hierarchyfind_callers, get_outgoing_calls, analyze_change_impact, get_cascade_impactrename_symbol, move_type, move_memberorganize_usings, format_documentview_external_definition, find_external_dependency_usages, find_package_usagesget_type_dependencies, get_project_graph, find_unused_project_references, analyze_complexitybatchPrerequisite: Glider currently requires .NET 10 SDK to be installed.
Run dotnet --version before installing. If dotnet is missing or the installed SDK is below 10, install the .NET 10 SDK first. On Windows you can use winget install -e --id Microsoft.DotNet.SDK.10; on macOS/Linux use the official Microsoft .NET 10 installation guide: https://dotnet.microsoft.com/download/dotnet/10.0
dotnet tool install --global glider
dotnet tool update --global glider
dotnet tool uninstall --global glider
Glider supports two transports:
# Stdio (default)
glider
# Show CLI help and exit
glider --help
glider -h
# Print version and exit
glider --version
glider -v
# Enable logs and (for stdio) a startup banner on stderr
glider --verbose
# Change the default async-tool timeout
glider --default-timeout 30m
# HTTP (default port: 5001)
glider --transport http
# Listens on http://localhost:5001/mcp
glider --transport http --port 8080
# Listens on http://localhost:8080/mcp
glider --transport http --port 8080 --default-timeout 30m
# Listens on http://localhost:8080/mcp with a longer server-side timeout
# Project-scoped config (recommended)
claude mcp add --transport stdio glider --scope project -- glider
# For larger solutions
claude mcp add --transport stdio glider --scope project -- glider --default-timeout 30m
If