What is the Cricket MCP server?
Cricket MCP — wraps CricAPI (api.cricapi.com) for live cricket data.
How to install Cricket
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cricket": {
"url": "https://gateway.pipeworx.io/cricket/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cricket": {
"serverUrl": "https://gateway.pipeworx.io/cricket/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"cricket": {
"type": "http",
"url": "https://gateway.pipeworx.io/cricket/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"cricket": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/cricket/mcp"
]
}
}
}Claude Code
claude mcp add --transport http cricket https://gateway.pipeworx.io/cricket/mcp