Roslyn-powered C# code navigation, blast-radius analysis, and verified edits for coding agents.
Roz MCP server exists for a simple reason — assistants are far more useful when they can act on Roz directly instead of describing what you should do. Roslyn-powered C# code navigation, blast-radius analysis, and verified edits for coding agents.
roz is an MCP server that gives C# coding agents the compiler's view of a solution. It finds every real reference to a symbol, including the edges text search misses: overrides, interface dispatch, DI registrations. It renames a symbol across the whole solution in one call, previews the blast radius of a proposed change, and makes edits that verify themselves against the compiler in the same round trip. roz runs as a .NET global tool over stdio; one roz-mcp setup command configures Claude Code, Cursor, VS Code Copilot Chat, or Codex CLI.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Once Roz is connected, these are the calls the assistant has available:
find_symbol — navigationget_symbols_overview — navigationgo_to_definition — navigationfind_overloads — navigationanalyze_method — navigationfind_references — referencesfind_implementations — referencesanalyze_change_impact — referencesget_type_hierarchy — typesget_diagnostics — diagnosticsget_workspace_info — workspaceget_unused_references — workspaceYou will need 3 environment variables: ROZ_TOOLS, ROZ_SOLUTION_PATH, ROZ_VS_INSTALL_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Roz's toolset — find_symbol, get_symbols_overview, go_to_definition and 11 more — is a fair guide to whether it matches your workflow. It is maintained by andypgray; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| find_symbol | navigation |
| get_symbols_overview | navigation |
| go_to_definition | navigation |
| find_overloads | navigation |
| analyze_method | navigation |
| find_references | references |
| find_implementations | references |
| analyze_change_impact | references |
| get_type_hierarchy | types |
| get_diagnostics | diagnostics |
| get_workspace_info | workspace |
| get_unused_references | workspace |
| rename_symbol | editing |
| edit_symbol | editing |
| Variable | Description | Required |
|---|---|---|
| ROZ_TOOLS | Configuration value read at startup. | Optional |
| ROZ_SOLUTION_PATH | Filesystem location the server is allowed to use. | Optional |
| ROZ_VS_INSTALL_PATH | Filesystem location the server is allowed to use. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.