get_business

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

Get full details for a single Yelp business by its id or alias. Returns rating, review count, price, categories, address, phone, hours, photos, and coordinates. Example: get_business({ id: “garaje-san-francisco” }).

Parameters

NameTypeRequiredDescription
idstringyesYelp business id or alias (from search_businesses results).
_apiKeystringnoOptional — your own Yelp Fusion API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "id": "garaje-san-francisco"
}

curl

curl -X POST https://gateway.pipeworx.io/yelp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_business","arguments":{"id":"garaje-san-francisco"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_business', {
  "id": "garaje-san-francisco"
});

More examples

{
  "id": "WavvLdfdP6g8aZTtbBQHTw"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026