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

NameTypeRequiredDescription
system_stringyesNPM | PYPI | GO | MAVEN | NUGET | CARGO | RUBYGEMS
namestringyes

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

FieldTypeDescription
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.

Regenerated from source · build July 6, 2026