get_event

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

Fetch a single PredictHQ event by its id, returning its title, category, rank, predicted attendance, dates, and location. Example: get_event({ id: “abcDEF123” }).

Parameters

NameTypeRequiredDescription
idstringyesThe PredictHQ event id, e.g. “abcDEF123”.

Example call

Arguments

{
  "id": "abcDEF123",
  "_apiKey": "your-predicthq-api-key"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_event', {
  "id": "abcDEF123",
  "_apiKey": "your-predicthq-api-key"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026