PluginBench
MCP Server
Active
MIT

Roslyn CodeLens MCP Server

io.github.MarcelRoozekrans/roslyn-codelens

What is the Roslyn CodeLens MCP server?

Roslyn-based MCP server providing semantic code intelligence for .NET codebases.

How to install Roslyn CodeLens

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "roslyn-codelens": {
      "command": "dnx",
      "args": [
        "RoslynCodeLens.Mcp"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "roslyn-codelens": {
      "command": "dnx",
      "args": [
        "RoslynCodeLens.Mcp"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "roslyn-codelens": {
      "command": "dnx",
      "args": [
        "RoslynCodeLens.Mcp"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "roslyn-codelens": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "RoslynCodeLens.Mcp"
      ]
    }
  }
}
Claude Code
claude mcp add roslyn-codelens -- dnx RoslynCodeLens.Mcp

Related MCP servers

MCP server for .NET memory profiling with JetBrains dotMemory integration

6
C#
MIT
View repository →