get_package

Pack: ecosystems · Endpoint: https://gateway.pipeworx.io/ecosystems/mcp

Get a package’s open metadata from ecosyste.ms — description, homepage, repository, license, latest version, monthly downloads, and dependent/usage counts. Works across 100+ registries. Keyless.

Parameters

NameTypeRequiredDescription
namestringyesPackage name, e.g. “react”, “@vue/cli”, “django”. Scopes/slashes are handled automatically.
registrystringnoRegistry name (default “npmjs.org”). e.g. “pypi.org”, “crates.io”, “rubygems.org”, “nuget.org”. Use list_registries to discover names.

Example call

Arguments

{
  "name": "lodash"
}

curl

curl -X POST https://gateway.pipeworx.io/ecosystems/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_package","arguments":{"name":"lodash"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_package', {
  "name": "lodash"
});

More examples

{
  "name": "django",
  "registry": "pypi.org"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ecosystems": {
      "url": "https://gateway.pipeworx.io/ecosystems/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 21, 2026