├── README.md ├── RoslynMcpServer ├── .gitignore ├── Dockerfile ├── Models │ └── SearchModels.cs ├── Program.cs ├── README.md ├── RoslynMcpServer.csproj ├── Services │ ├── CacheManager.cs │ ├── DiagnosticLogger.cs │ ├── IncrementalAnalyzer.cs │ ├── SecurityValidator.cs │ └── SymbolSearchService.cs ├── Tools │ └── CodeNavigationTools.cs ├── setup.ps1 ├── test-installation.bat └── test-installation.sh └── claude_desktop_config.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/README.md -------------------------------------------------------------------------------- /RoslynMcpServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/.gitignore -------------------------------------------------------------------------------- /RoslynMcpServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Dockerfile -------------------------------------------------------------------------------- /RoslynMcpServer/Models/SearchModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Models/SearchModels.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Program.cs -------------------------------------------------------------------------------- /RoslynMcpServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/README.md -------------------------------------------------------------------------------- /RoslynMcpServer/RoslynMcpServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/RoslynMcpServer.csproj -------------------------------------------------------------------------------- /RoslynMcpServer/Services/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Services/CacheManager.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Services/DiagnosticLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Services/DiagnosticLogger.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Services/IncrementalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Services/IncrementalAnalyzer.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Services/SecurityValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Services/SecurityValidator.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Services/SymbolSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Services/SymbolSearchService.cs -------------------------------------------------------------------------------- /RoslynMcpServer/Tools/CodeNavigationTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/Tools/CodeNavigationTools.cs -------------------------------------------------------------------------------- /RoslynMcpServer/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/setup.ps1 -------------------------------------------------------------------------------- /RoslynMcpServer/test-installation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/test-installation.bat -------------------------------------------------------------------------------- /RoslynMcpServer/test-installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/RoslynMcpServer/test-installation.sh -------------------------------------------------------------------------------- /claude_desktop_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carquiza/RoslynMCP/HEAD/claude_desktop_config.json --------------------------------------------------------------------------------