current_matches
Pack: cricket · Endpoint: https://gateway.pipeworx.io/cricket/mcp
List current and recent cricket matches (Test/ODI/T20) with live scores, teams, venue, and status. Use this for “what cricket matches are live/on right now”. Returns match IDs usable with match_info.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
offset | number | no | Pagination offset (default 0). Each page returns up to 25 matches. |
_apiKey | string | no |
Example call
Arguments
{
"_apiKey": "your-cricket-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/cricket/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_matches","arguments":{"_apiKey":"your-cricket-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('current_matches', {
"_apiKey": "your-cricket-api-key"
});
More examples
{
"offset": 25,
"_apiKey": "your-cricket-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cricket": {
"url": "https://gateway.pipeworx.io/cricket/mcp"
}
}
}
See Getting Started for client-specific install steps.