MCP server for nuget packages feed that supports the nuget protocol
{
"mcpServers": {
"nuget-packages-mcp-server": {
"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.
MCP server for nuget packages feed that supports the nuget protocol
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 245 days ago. 2 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 Nuget Packages Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides tools for searching and retrieving NuGet package information. This server enables AI assistants to interact with NuGet package repositories through standardized MCP tools.
The NuGet Packages MCP Server is a .NET-based implementation that exposes NuGet package metadata retrieval capabilities through the MCP protocol. It allows AI assistants to:
Clone the repository:
git clone https://github.com/oshvartz/nuget-packages-mcp-server.git
cd nuget-packages-mcp-server
Build the project:
dotnet build -c Release
The built DLL will be located at:
src/NugetPackagesMcpServer/bin/Release/net8.0/NugetPackagesMcpServer.dll
Add the following configuration to your MCP client settings (e.g., cline_mcp_settings.json):
{
"nuget-packages-mcp-server": {
"disabled": false,
"timeout": 300,
"command": "dotnet",
"args": [
"C:/path/to/NugetPackagesMcpServer.dll"
],
"env": {
"NugetFeed:FeedUrl": "https://api.nuget.org/v3/index.json"
},
"type": "stdio"
}
}
The server provides the following MCP tools:
Get all available versions of a NuGet package from the configured feed.
Parameters:
packageName (string, required): The name of the NuGet packageincludePrerelease (boolean, optional): Include prerelease versions in results (defaults to feed configuration)Get package dependencies for a specific package name and version.
Parameters:
packageName (string, required): The name of the NuGet packageversion (string, required): The specific version of the packageGet public interfaces and classes contracts from a NuGet package as markdown. This tool extracts and documents the public API surface of a package.
Parameters:
packageName (string, required): The name of the NuGet packageversion (string, required): The specific version of the packageReturns: A markdown document containing:
The repository includes a PowerShell script (test-mcp-inspector.ps1) that uses the official MCP Inspector tool to test and debug the server.
MCP Inspector is an official debugging tool from the Model Context Protocol team that provides: