gh_repo_stats

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

Return JSDelivr CDN request count and bandwidth for files served from a GitHub owner/repo for the specified period (day/week/month/quarter/year).

Parameters

NameTypeRequiredDescription
ownerstringyes
repostringyes
periodstringno

Example call

Arguments

{
  "owner": "twbs",
  "repo": "bootstrap"
}

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":"gh_repo_stats","arguments":{"owner":"twbs","repo":"bootstrap"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gh_repo_stats', {
  "owner": "twbs",
  "repo": "bootstrap"
});

More examples

{
  "owner": "facebook",
  "repo": "react",
  "period": "year"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "JSDelivr stats for GitHub repository files"
}

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.

Regenerated from source · build July 6, 2026