besttime_live

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

Is busy right now vs usual — returns live foot-traffic busyness compared to the forecasted level for this hour. Identify the venue by venue_id, or by venue_name + venue_address. Example: besttime_live({ venue_name: “Blue Bottle Coffee”, venue_address: “66 Mint St, San Francisco”, _apiKey: “pri_xxx:pub_yyy” })

Parameters

NameTypeRequiredDescription
venue_idstringnoVenue id from besttime_forecast (fastest). Alternative to venue_name+venue_address.
venue_namestringnoBusiness name (required if venue_id not given)
venue_addressstringnoBusiness address (required if venue_id not given)
_apiKeystringyesBestTime keys as “privateKey:publicKey” (pri_…/pub_…) from besttime.app

Example call

Arguments

{
  "venue_id": "ven_bluebottle_mint_sf",
  "_apiKey": "pri_abc123:pub_xyz789"
}

curl

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_live","arguments":{"venue_id":"ven_bluebottle_mint_sf","_apiKey":"pri_abc123:pub_xyz789"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('besttime_live', {
  "venue_id": "ven_bluebottle_mint_sf",
  "_apiKey": "pri_abc123:pub_xyz789"
});

More examples

{
  "venue_name": "Blue Bottle Coffee",
  "venue_address": "66 Mint St, San Francisco, CA",
  "_apiKey": "pri_abc123:pub_xyz789"
}

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.

Regenerated from source · build August 18, 2026