Connects Claude to the NuGet package registry with four core operations: full-text search across packages, fetching registration metadata including versions and dependencies, listing all published versions, and grabbing the latest release. Part of the Pipeworx gateway ecosystem, so you can either use it standalone or access it through their unified endpoint alongside 670+ other data sources. Useful when you're exploring .NET packages, checking version compatibility, or need to pull dependency trees without leaving your conversation. Supports the ask_pipeworx natural language interface if you'd rather describe what you want than call tools directly.
NuGet MCP — .NET package registry
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search | Full-text search across NuGet packages. |
get_package | Registration metadata for a package — versions, tags, dependencies, dates. |
list_versions | All published versions of a package. |
latest_version | Most recent released version of a package. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nuget": {
"url": "https://gateway.pipeworx.io/nuget/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nuget data" })
The gateway picks the right tool and fills the arguments automatically.
MIT