dotMCP.win-x64
0.1.2
See the version list below for details.
dotnet add package dotMCP.win-x64 --version 0.1.2
NuGet\Install-Package dotMCP.win-x64 -Version 0.1.2
<PackageReference Include="dotMCP.win-x64" Version="0.1.2" />
<PackageVersion Include="dotMCP.win-x64" Version="0.1.2" />
<PackageReference Include="dotMCP.win-x64" />
paket add dotMCP.win-x64 --version 0.1.2
#r "nuget: dotMCP.win-x64, 0.1.2"
#:package dotMCP.win-x64@0.1.2
#addin nuget:?package=dotMCP.win-x64&version=0.1.2
#tool nuget:?package=dotMCP.win-x64&version=0.1.2
dotMCP (SharpMCP.Server)
MCP server that exposes a C# solution as a semantic graph over Roslyn, instead of requiring an LLM agent to grep files and re-parse text on every step.
What it's for
Connect this server to an MCP-capable client (Claude Code, VS Code + Copilot, Cursor, etc.) so the agent can navigate, analyze, and edit a C# solution through typed tool calls (get_type, find_callers, find_writes, rename_symbol, concurrency_audit, tests_run, and more) instead of raw file search-and-replace.
See the repository at https://github.com/QsROg8320/SharpMCP —
.claude/skills/sharpmcp-tools/SKILL.md there documents all 57 tools with real
tested examples, argument constraints, and known gaps.
Usage via NuGet (dnx)
VS Code / clients that use a "servers" config block:
{
"servers": {
"dotMCP": {
"type": "stdio",
"command": "dnx",
"args": ["dotMCP@0.1.1", "--yes"]
}
}
}
qwen-code / Pi Coding Agent / other clients that use a plain "mcpServers" block
(do not include "servers" or "type" here — those are VS Code-specific and
will be rejected by these clients):
{
"mcpServers": {
"dotMCP": {
"command": "dnx",
"args": ["dotMCP@0.1.1", "--yes"]
}
}
}
Requires the .NET 10 SDK (for the dnx command) on the machine running the MCP
client.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.