← Discover MCPs and Agents
r
MCPAI & MLGitHub
roslyn-mcp
Links
README
From the repo.
Roslyn Code Analysis MCP Server
Overview
A Model Context Protocol (MCP) server that provides C# code analysis capabilities using the Roslyn compiler platform. This tool helps validate C# files, find symbol references, and perform static code analysis within the context of a .NET project.
Features
- Code Validation: Analyze C# files for syntax errors, semantic issues, and compiler warnings
- Symbol Reference Finding: Locate all usages of a symbol across a project
- Project Context Analysis: Validate files within their project context
- Code Analyzer Support: Run Microsoft recommended code analyzers
Tools
ValidateFile: Validates a C# file using Roslyn and runs code analyzersFindUsages: Finds all references to a symbol at a specified position
Example config
{
"servers": {
"RoslynMCP": {
"type": "stdio",
"command": "dotnet",
"args": [
"run",
"--no-build",
"--project",
"E:/Source/roslyn-mcp/RoslynMCP/RoslynMCP/RoslynMCP.csproj"
]
}
}
}
Example prompt
When done implementing changes, run these validation steps as human will not accept work unless these are done:
- Always use Roslyn validation tool on C# (.cs) files
Getting Started
- Build the project
- Run the application with:
dotnet run - The server will start and listen for MCP commands via standard I/O
Requirements
- .NET SDK
- MSBuild tools
- NuGet packages for Roslyn analyzers (automatically loaded if available)
Example Usage
Validate a C# file:
ValidateFile --filePath="/path/to/your/file.cs" --runAnalyzers=true
Find all usages of a symbol:
FindUsages --filePath="/path/to/your/file.cs" --line=10 --column=15
Technical Details
- Uses
Microsoft.CodeAnalysislibraries for code analysis - Integrates with MSBuild to load full project context
- Supports standard diagnostic analyzers
- Includes detailed output with syntax, semantic, and analyzer diagnostics
Collected info
- ★ 32 stars
- ⎇ 5 forks
- Language: C#
- Source updated: 9/10/2026
Config for your environment
Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.
Tool
OS
Config file: ~/.cursor/mcp.json
{
"mcpServers": {
"mcp-server": {
"url": "{MCP_ENDPOINT_URL}"
}
}
}Paste into mcpServers in the config file. Restart Cursor after saving.
If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.