list_versions
Pack: packagist · Endpoint: https://gateway.pipeworx.io/packagist/mcp
List all versions of a package with release dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | vendor/package |
Example call
Arguments
{
"name": "symfony/console"
}
curl
curl -X POST https://gateway.pipeworx.io/packagist/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_versions","arguments":{"name":"symfony/console"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_versions', {
"name": "symfony/console"
});
Response shape
Always returns: package, count, versions
| Field | Type | Description |
|---|---|---|
package | string | Package name in vendor/package form |
count | number | Total number of versions |
versions | array | List of all versions |
Full JSON Schema
{
"type": "object",
"properties": {
"package": {
"type": "string",
"description": "Package name in vendor/package form"
},
"count": {
"type": "number",
"description": "Total number of versions"
},
"versions": {
"type": "array",
"description": "List of all versions",
"items": {
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "Version string"
},
"released": {
"type": "string",
"description": "ISO 8601 release timestamp"
}
}
}
}
},
"required": [
"package",
"count",
"versions"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"packagist": {
"url": "https://gateway.pipeworx.io/packagist/mcp"
}
}
}
See Getting Started for client-specific install steps.