besttime_query
Pack: besttime · Endpoint: https://gateway.pipeworx.io/besttime/mcp
Busyness for a venue at a specific hour or day — reads an already-forecasted venue (by venue_id from besttime_forecast). Pass hour for a single hour, or omit it to get the whole day’s curve. Example: besttime_query({ venue_id: “ven_…”, day: 4, hour: 18, _apiKey: “pri_xxx:pub_yyy” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
venue_id | string | yes | Venue id returned by besttime_forecast |
hour | integer | no | Hour of day 0-23 (optional). If given, returns that hour’s busyness intensity. |
day | integer | no | Day of week 0-6 (0=Monday … 6=Sunday). Defaults to 0 (Monday) if omitted. |
_apiKey | string | yes | BestTime keys as “privateKey:publicKey” (pri_…/pub_…) from besttime.app |
Example call
curl -X POST https://gateway.pipeworx.io/besttime/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"besttime_query","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"besttime": {
"url": "https://gateway.pipeworx.io/besttime/mcp"
}
}
}
See Getting Started for client-specific install steps.