get_version_info
Pack: npm · Endpoint: https://gateway.pipeworx.io/npm/mcp
Get metadata for a SPECIFIC version (or dist-tag) of an npm package: dependencies, dev/peer dependencies, engines, license, tarball + integrity hash + unpacked size, and any deprecation notice. Use for “dependencies of
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Exact package name (e.g. “express”). |
version | string | no | Exact version (e.g. “4.18.2”), a dist-tag (e.g. “latest”, “next”), or omit for latest. |
Example call
Arguments
{
"name": "express"
}
curl
curl -X POST https://gateway.pipeworx.io/npm/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_version_info","arguments":{"name":"express"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_version_info', {
"name": "express"
});
More examples
{
"name": "webpack",
"version": "5.88.0"
}
{
"name": "next",
"version": "latest"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"npm": {
"url": "https://gateway.pipeworx.io/npm/mcp"
}
}
}
See Getting Started for client-specific install steps.