.NET MCP server that gives LLMs real NuGet API metadata to reduce hallucinations
{
"mcpServers": {
"nugetmcpserver": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
.NET MCP server that gives LLMs real NuGet API metadata to reduce hallucinations
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 87 days ago. 16 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for NugetMcpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
NugetMcpServer is an MCP server that helps you find and inspect NuGet packages. It gives you accurate information about interfaces, classes, enums, and other types directly from the packages. This helps AI assistants provide better code suggestions and avoid making up non-existent APIs.
Certified by MCPHub.
This server connects your AI assistant (like Claude or Copilot) to the real NuGet ecosystem. Instead of guessing, the AI can look up the exact methods and types available in a specific version of a package.
You can use it to:
It works with any client that supports the Model Context Protocol (MCP), such as VS Code (with Copilot), Claude Desktop, or OllamaChat.
Prerequisite: Docker installed and running.
Click to Install in VS Code (Docker)
Prerequisite: .NET 9.0 SDK installed.
dotnet tool install -g DimonSmart.NugetMcpServer
Run this command to install automatically via Smithery:
npx -y @smithery/cli install @dimonsmart/nugetmcpserver --client claude
If you prefer to configure manually:
{
"mcpServers": {
"nuget": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/dimonsmart/nugetmcpserver:latest"]
}
}
}
{
"mcpServers": {
"nuget": {
"command": "NugetMcpServer",
"args": []
}
}
}
You can point the server at private feeds (Azure Artifacts, Artifactory, ProGet, Nexus) and local folders.
Source resolution order (highest priority first):
--source / --sources command-line argsNUGET_SOURCES + NUGET_CONFIG environment variablesNuGet:Sources + NuGet:ConfigPath in appsettings.json (or client env binding)