list_releases
Pack: pypi · Endpoint: https://gateway.pipeworx.io/pypi/mcp
List all published version strings for a Python package on PyPI, sorted, plus the latest version. Useful to see a package’s release history or check which versions are available to pip install.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Exact PyPI package name, e.g. “requests”. |
Example call
Arguments
{
"name": "requests"
}
curl
curl -X POST https://gateway.pipeworx.io/pypi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_releases","arguments":{"name":"requests"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_releases', {
"name": "requests"
});
More examples
{
"name": "flask"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pypi": {
"url": "https://gateway.pipeworx.io/pypi/mcp"
}
}
}
See Getting Started for client-specific install steps.