package
Pack: deps-dev · Endpoint: https://gateway.pipeworx.io/deps-dev/mcp
Fetch deps.dev metadata for an open-source package by ecosystem (NPM/PYPI/GO/MAVEN/NUGET/CARGO/RUBYGEMS) and name, returning version list, latest version, and linked source repository.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
system_ | string | yes | NPM | PYPI | GO | MAVEN | NUGET | CARGO | RUBYGEMS |
name | string | yes |
Example call
Arguments
{
"system_": "NPM",
"name": "lodash"
}
curl
curl -X POST https://gateway.pipeworx.io/deps-dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"package","arguments":{"system_":"NPM","name":"lodash"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('package', {
"system_": "NPM",
"name": "lodash"
});
More examples
{
"system_": "PYPI",
"name": "requests"
}
Response shape
| Field | Type | Description |
|---|
Full JSON Schema
{
"type": "object",
"description": "Package metadata from deps.dev API",
"properties": {}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"deps-dev": {
"url": "https://gateway.pipeworx.io/deps-dev/mcp"
}
}
}
See Getting Started for client-specific install steps.