Slnmap
Slnmap
Slnmap (sln-map) — a semantic map of your .sln for AI coding agents.
Open source under the MIT license.
Your AI agent can't refactor .NET code it can't see. Ask an agent "what breaks if I change this interface?" and it guesses from the files in its context — missing callers in other projects and files it never opened. Slnmap gives the agent a precise, compiler-accurate map of your whole solution, so it answers correctly: every caller, every implementation, across every project. Fewer broken changes, no hallucinated dependencies. It runs locally and serves the map to your agent or editor over MCP.
Quickstart (3 steps)
1. Install the global tool (requires the .NET SDK 9.0+):
dotnet tool install --global SlnmapIf this is the first .NET global tool ever installed on the machine, the tools directory
(~/.dotnet/tools) may not be on your PATH yet — open a new terminal before running slnmap.
2. Analyze your solution (or a single .csproj) — this builds slnmap.db in the current folder:
slnmap analyze path/to/YourSolution.sln3. Connect your MCP client. For Claude Code, add this to .mcp.json in your project. Use an
absolute path to the slnmap.db you just built — an MCP client's working directory is usually not
your project folder, so a relative path can silently resolve to the wrong (or a missing) file:
{
"mcpServers": {
"slnmap": {
"command": "slnmap",
"args": ["serve", "--db", "C:/path/to/your/project/slnmap.db"]
}
}
}On macOS/Linux, use a POSIX absolute path instead, e.g. /home/you/project/slnmap.db.
Or register it from the command line:
claude mcp add slnmap -- slnmap serve --db C:/path/to/your/project/slnmap.dbRestart your MCP client after registering. Fully quit and relaunch it — starting a new conversation or reconnecting mid-session is not enough; a running session will not see the new tools until the client process restarts.
That's it. Ask your agent an architecture question and it will call Slnmap.
(Run slnmap doctor first if anything looks off — see Troubleshooting.)
Related MCP server: sharplens-mcp
What you can ask
The server exposes thirteen read-only tools. Give them fully qualified names; results are capped and counts-first. (A note the tools also carry: an FQN does not reveal whether a member is an explicit interface implementation.)
Tool | Example question |
| "Find the |
| "What does |
| "What breaks if I change |
| "Show me the projects and how they depend on each other." |
| "Where is |
| "Who implements |
| "Show the base and derived type tree for |
| "Which tests exercise |
| "How do the projects reference each other, and where is the coupling worst?" |
| "Are there dependency cycles between projects or namespaces?" |
| "Show me the actual source of |
| "List every HTTP endpoint, or just the |
| "Which endpoint serves |
For an interface (or interface member), impact_analysis follows both the interface's callers and
its concrete implementations/overrides — so the answer includes code that only touches the interface,
across projects, in files nobody has open.
HTTP endpoints are first-class graph nodes — from ASP.NET Core Minimal APIs (v0.7.0) and
attribute-routed controllers (v0.8.0): each MapGet/MapPost/… registration and each
[Route]/[HttpGet("…")] action appears as VERB /route/template linked to its handler method,
so impact_analysis and find_usages on a handler surface the actual routes that break. Route
templates are resolved statically — MapGroup prefixes, const patterns, the common
CleanArchitecture registration conventions, class-level [Route] (including inherited ones and
[controller]/[action] tokens), and controller base classes reached through packages
(Ardalis.ApiEndpoints works out of the box). Anything that can't be resolved statically is counted
and reported, never guessed — and controllers routed conventionally (MapControllerRoute, no
route attributes) are detected and disclosed rather than silently absent.
MCP tools reference
The exact parameter names, for clients that call the tools directly. Most tools take fqn — the
symbol's fully qualified name — not symbol, name, or type; a wrong parameter name fails the
call.
Tool | Parameters | Description |
|
| Search symbols by name or FQN, case-insensitive substring; returns kind, FQN, and file for up to 20 matches. |
| (none) | Projects, project-to-project dependencies, node/edge counts by kind, and top-level namespaces. |
|
| Print a symbol's source, read from its file at the declaration span. |
|
| Where a symbol is called or referenced — containing member, file, and line, up to 50. |
|
| A symbol's dependencies grouped by relationship kind (Calls, Implements, Inherits, References). |
|
| Concrete types implementing an interface / deriving from a base, or members overriding a virtual/interface member. |
|
| Base and/or derived type tree as an indented text tree. |
|
| Project-to-project reference map with cross-project reference counts and a hotspot line. |
|
| Every symbol that transitively depends on the given one (depth 5) — counts first, then nearest-first. |
|
| Test members that transitively exercise a symbol, grouped by project with file:line. |
|
| Dependency cycles reported as path chains, worst offenders first. |
|
| HTTP endpoints (Minimal APIs + attribute-routed controllers) grouped by project: |
|
| Endpoints matching a route — case-insensitive, |
CLI
slnmap analyze <solution> # build or update the code graph (incremental on re-run)
slnmap serve # serve the graph to MCP clients over stdio
slnmap status # show node/edge counts and when it was last analyzed
slnmap viz # export the graph as a self-contained interactive HTML file
slnmap doctor # check the environment can run SlnmapThese five verbs are the whole CLI. Symbol, usage, and impact querying is MCP-only — there is no
find/usages/impact command; connect an MCP client to slnmap serve to query the graph.
--db <path> selects the database file (default slnmap.db). -v/--verbose prints per-document
progress on its own line per update — useful in an interactive terminal, but it floods piped or
redirected output (logs, CI), so omit it there.
Visualizing the graph
slnmap viz --output graph.html # export the whole graph
slnmap viz --project YourProject # export one project's subtree; others render as collapsed stubsOpens as a single HTML file — double-click it, no server or internet connection required. It starts collapsed to one node per project; click a project, namespace, or class to drill into it. Like the rest of Slnmap, the export is self-contained: the graph library is embedded in the file, so nothing is fetched from a CDN and it works fully offline.
Updating
.NET tools do not update themselves, and Slnmap makes no network calls — so it will never nag you about (or check for) new versions. To update:
dotnet tool update -g SlnmapTo hear about releases, watch the GitHub repo (Watch → Custom → Releases); each release ships
with notes in the changelog. After a major-version update, re-run
slnmap analyze if the tool asks for it — release notes call out when a graph rebuild is needed.
Build from source
Slnmap is a standard .NET solution — clone, build, and test it with the SDK:
git clone https://github.com/EMahmoudNabil/slnmap.git
cd slnmap
dotnet build -c Release
dotnet test -c ReleaseTo run the CLI without installing the global tool:
dotnet run --project src/Slnmap.Cli -- analyze path/to/YourSolution.slnCompatibility
Analyzes C# solutions targeting .NET 8 and .NET 9 (earlier targets are untested — feedback welcome); runs on Windows, macOS, and Linux; works with any MCP client (tested with Claude Code).
Privacy
100% local — and now you can verify it. Slnmap runs on your machine, reads your source with Roslyn, and writes a single local SQLite file. The MCP server reads only that local file. There is no telemetry, no network calls, and no cloud service — analysis works fully offline. Now that the CLI and MCP server are open source, that claim is auditable: read the code, or watch the process — nothing leaves your machine.
Performance
Measured on eShopOnWeb (10 projects, net8.0),
.NET 9 SDK, on a 2-core laptop. Each timing is the median of 3 runs; full methodology, machine spec,
and pinned commit are in BENCHMARKS.md.
Metric | Result |
Graph size | 1,332 nodes / 3,014 edges |
Cold analyze (10 projects) | ~20.9 s (median of 3) |
Re-analyze after a one-file change | ~18.7 s (median of 3 — see note) |
| ~240–290 ms (end-to-end MCP round-trip) |
Numbers are for v0.6.0: fully-qualified type references (no using shortcut) now produce edges,
and events are modeled as graph nodes (see the changelog) — the fully-qualified-
reference fix accounts for nearly all of this release's edge growth (89 of 92 new edges) versus
v0.5.0 (1,311 / 2,922 edges). Timings are flat within normal run-to-run noise; the analyzer's
per-document work is otherwise unchanged. Full before/after detail, including the v0.5.0 and
v0.3.0 baselines, is in BENCHMARKS.md.
To estimate your own solution's cold analyze time, scale by size rather than anchoring on any single number above: field measurements on real-world solutions (antivirus real-time protection on, no exclusions) come out at roughly 55–60 seconds per 1,000 analyzed documents. Treat it as approximate — hardware and antivirus overhead move it either way.
Incremental re-analysis. Re-analysis re-walks only the changed file and its dependents, but each
run still pays a full workspace load of the solution — because the CLI is run-and-exit and does not
keep a warm workspace. In practice that means re-analysis is currently about as fast as a cold run,
not faster. A resident watch mode that keeps the workspace warm (targeting sub-second
re-analysis) is the top item on the roadmap.
Troubleshooting
Run slnmap doctor first — it checks the three things that actually block analysis and prints a
fix for each:
$ slnmap doctor
[ok] .NET SDK: 1 SDK(s) installed; newest: 9.0.314 …
[ok] MSBuild workspace: Roslyn MSBuild workspace initialized …
[ok] Graph directory: Writable: /path/to/cwd"No .NET SDKs are installed" / MSBuild fails to load projects. Slnmap analyzes via
MSBuildWorkspace, which runs design-time builds using your installed .NET SDK. Install the SDK (not just the runtime) from https://dotnet.microsoft.com/download. On Windows, if projects still fail to load, install the Visual Studio Build Tools (or Visual Studio) so MSBuild and the targeting packs resolve.Analysis reports warnings but finishes. That is expected and safe: a project that can't be loaded (e.g. a missing SDK or targeting pack) is reported as a warning and skipped — Slnmap indexes everything that did load rather than failing the whole run (a partial load). By default these are condensed into a single
Warnings: N (M unique)summary line; runslnmap analyze --verbosefor the full, grouped detail.The first analysis of a large solution takes a while. Cold analysis compiles every project once; as a rough guide from field measurements, expect around 55–60 seconds per 1,000 analyzed documents (approximate). Re-runs are faster on graph work but still reload the workspace — see the performance note above. This is normal; the graph is cached in
slnmap.dbbetween runs.Windows Defender (or other antivirus) slows analysis. Real-time protection scans every file Roslyn reads while compiling your solution. Adding an exclusion for your repository folder can speed analysis up, but changing exclusions requires local admin rights — corporate users without them may need an IT ticket. No exclusion is required for correctness: analysis completes fine without one, and the ~55–60 s per 1,000 documents guide above was measured with real-time protection on and no exclusions in place.
slnmap: command not foundafter install. Ensure the .NET global tools directory (~/.dotnet/tools) is on yourPATH, then open a new shell.
How it works
Slnmap uses the Roslyn compiler platform to build a precise semantic graph of your solution — every type and member, and the relationships between them (calls, implementations, inheritance, references). The graph is stored locally and served to your AI agent or editor over MCP. Updates are incremental and crash-safe: an interrupted run never corrupts your existing graph.
License & support
Slnmap is open source under the MIT license.
The CLI and MCP server are MIT-licensed and will stay that way. Future hosted or team-oriented features may be commercial.
For questions or to report an issue, open a GitHub issue or contact hello@slnmap.dev. Contributions are welcome — see CONTRIBUTING.md.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceCodeMap is a Roslyn-powered MCP server that lets AI agents navigate C# codebases by symbol, call graph, and architectural fact, instead of brute-force reading thousands of lines of source code. One tool call. Precise answer. No context flood.17
- AlicenseAqualityAmaintenanceA Model Context Protocol (MCP) server providing 62 AI-optimized tools for .NET/C# semantic code analysis, navigation, refactoring, and code generation using Microsoft Roslyn. Built for AI coding agents - provides compiler-accurate code understanding that AI cannot infer from reading source files alone.6231MIT
- Alicense-qualityAmaintenanceProvides C# coding agents with compiler-accurate symbol analysis, including references, renames, and impact analysis for .NET solutions.MIT
- Alicense-qualityAmaintenanceLocal repository intelligence MCP server that builds a reusable graph of code structure for AI coding agents, providing 34 network-free tools for understanding, searching, and analyzing repositories without data leaving the machine.59MIT
Related MCP Connectors
AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/EMahmoudNabil/slnmap'
If you have feedback or need assistance with the MCP directory API, please join our Discord server