top_games

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

Get the top games currently being streamed on Twitch, ranked by number of viewers. Returns game id, name, and box art. Example: top_games({ first: 20 })

Parameters

NameTypeRequiredDescription
firstnumbernoNumber of games to return (default 20, max 100)
_apiKeystringno

Example call

Arguments

{
  "first": 20,
  "_apiKey": "your-twitch-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/twitch/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_games","arguments":{"first":20,"_apiKey":"your-twitch-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('top_games', {
  "first": 20,
  "_apiKey": "your-twitch-api-key"
});

More examples

{
  "first": 50,
  "_apiKey": "your-twitch-api-key"
}

Connect

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

{
  "mcpServers": {
    "twitch": {
      "url": "https://gateway.pipeworx.io/twitch/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 3, 2026