Wraps the Twitch Helix API in read-only mode, giving Claude access to stream data, channel info, clips, and user details without needing to manage OAuth flows yourself. Part of the Pipeworx gateway ecosystem, so you can either hit the Twitch endpoint directly or connect to the full gateway for 751+ data sources. Includes an ask_pipeworx tool that lets you query in plain English instead of calling specific endpoints. Useful when you're building chatbots that need live stream stats, aggregating creator metrics, or pulling highlight clips programmatically. Runs over streamable HTTP, so setup is just dropping a URL into your MCP config.
Twitch MCP — wraps the Twitch Helix API (read-only)
Part of Pipeworx — an MCP gateway connecting AI agents to 751+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"twitch": {
"url": "https://gateway.pipeworx.io/twitch/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 751+ 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 Twitch data" })
The gateway picks the right tool and fills the arguments automatically.
MIT