list_versions
Pack: nuget · Endpoint: https://gateway.pipeworx.io/nuget/mcp
All published versions of a package.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Package 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
| Field | Type | Description |
|---|---|---|
versions | array | Array 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.