package_stats

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

Download counts (total, monthly, daily) + dependents count.

Parameters

NameTypeRequiredDescription
namestringyesvendor/package

Example call

Arguments

{
  "name": "monolog/monolog"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('package_stats', {
  "name": "monolog/monolog"
});

Response shape

FieldTypeDescription
downloadsobjectDownload statistics
dependentsnumberNumber of packages depending on this
Full JSON Schema
{
  "type": "object",
  "properties": {
    "downloads": {
      "type": "object",
      "description": "Download statistics",
      "properties": {
        "total": {
          "type": "number",
          "description": "Total downloads"
        },
        "monthly": {
          "type": "number",
          "description": "Monthly downloads"
        },
        "daily": {
          "type": "number",
          "description": "Daily downloads"
        }
      }
    },
    "dependents": {
      "type": "number",
      "description": "Number of packages depending on this"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026