npm_package_stats
Pack: jsdelivr · Endpoint: https://gateway.pipeworx.io/jsdelivr/mcp
Request counts + bandwidth for an npm package served via JSDelivr.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
package_name | string | yes | npm package name (scoped allowed) |
period | string | no | day | week | month | quarter | year | s-month | s-quarter | s-year (default month) |
Example call
Arguments
{
"package_name": "react"
}
curl
curl -X POST https://gateway.pipeworx.io/jsdelivr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"npm_package_stats","arguments":{"package_name":"react"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('npm_package_stats', {
"package_name": "react"
});
More examples
{
"package_name": "@babel/core",
"period": "week"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "JSDelivr stats for npm package (requests and bandwidth)"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"jsdelivr": {
"url": "https://gateway.pipeworx.io/jsdelivr/mcp"
}
}
}
See Getting Started for client-specific install steps.