list_versions

Pack: nuget · Endpoint: https://gateway.pipeworx.io/nuget/mcp

All published versions of a package.

Parameters

NameTypeRequiredDescription
idstringyesPackage id

Example call

Arguments

{
  "id": "Newtonsoft.Json"
}

curl

curl -X POST https://gateway.pipeworx.io/nuget/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_versions","arguments":{"id":"Newtonsoft.Json"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_versions', {
  "id": "Newtonsoft.Json"
});

Response shape

FieldTypeDescription
versionsarrayArray of semantic version strings
Full JSON Schema
{
  "type": "object",
  "description": "List of all published versions for a package",
  "properties": {
    "versions": {
      "type": "array",
      "description": "Array of semantic version strings",
      "items": {
        "type": "string"
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nuget": {
      "url": "https://gateway.pipeworx.io/nuget/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026