besttime_forecast
Pack: besttime · Endpoint: https://gateway.pipeworx.io/besttime/mcp
How busy is
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
venue_name | string | yes | Business name, e.g. “McDonald’s”, “SoulCycle” (max 256 chars) |
venue_address | string | yes | Business address, e.g. “1 Market St, San Francisco, CA” (max 1024 chars) |
_apiKey | string | yes | BestTime keys as “privateKey:publicKey” (pri_…/pub_…) from your besttime.app account (free test account available) |
Example call
Arguments
{
"venue_name": "McDonald's",
"venue_address": "Ocean Ave, San Francisco, CA",
"_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_forecast","arguments":{"venue_name":"McDonald'\''s","venue_address":"Ocean Ave, San Francisco, CA","_apiKey":"pri_abc123:pub_xyz789"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('besttime_forecast', {
"venue_name": "McDonald's",
"venue_address": "Ocean Ave, San Francisco, CA",
"_apiKey": "pri_abc123:pub_xyz789"
});
More examples
{
"venue_name": "SoulCycle",
"venue_address": "1234 Market St, San Francisco, CA 94102",
"_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.