python_major

Pack: pypi-stats · Endpoint: https://gateway.pipeworx.io/pypi-stats/mcp

Fetch PyPI download breakdown for a package by Python major version (2 vs 3) from pypistats.org. Returns per-version download counts.

Parameters

NameTypeRequiredDescription
packagestringyes

Example call

Arguments

{
  "package": "flask"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('python_major', {
  "package": "flask"
});

Response shape

FieldTypeDescription
dataarrayDownloads by Python major version
packagestringPackage name
typestringResponse type
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Downloads by Python major version",
      "items": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Python major version"
          },
          "downloads": {
            "type": "integer",
            "description": "Number of downloads"
          },
          "percent": {
            "type": "number",
            "description": "Percentage of total downloads"
          }
        }
      }
    },
    "package": {
      "type": "string",
      "description": "Package name"
    },
    "type": {
      "type": "string",
      "description": "Response type"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "pypi-stats": {
      "url": "https://gateway.pipeworx.io/pypi-stats/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026