Connects Claude to PyPIStats.org for querying Python package download statistics and metrics. Part of the broader Pipeworx gateway that aggregates 673+ data sources behind a unified MCP interface. While the docs don't list specific tools, you can query it using plain English through the ask_pipeworx function rather than calling endpoints directly. Useful when you need to check package popularity, compare download trends, or validate which Python packages are seeing real adoption. The streamable HTTP transport means no local installation, just point your MCP client at the gateway URL and start asking questions about PyPI data.
PyPI Stats MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pypi-stats": {
"url": "https://gateway.pipeworx.io/pypi-stats/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Pypi Stats data" })
The gateway picks the right tool and fills the arguments automatically.
MIT