python_minor

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

Fetch PyPI download breakdown for a package by Python minor version (e.g. 3.10, 3.11) from pypistats.org. Returns per-version download counts.

Parameters

NameTypeRequiredDescription
packagestringyes

Example call

Arguments

{
  "package": "scipy"
}

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_minor","arguments":{"package":"scipy"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
dataarrayDownloads by Python minor version
packagestringPackage name
typestringResponse type
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Downloads by Python minor version",
      "items": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Python minor 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