get_reviews
Pack: yelp · Endpoint: https://gateway.pipeworx.io/yelp/mcp
Get recent Yelp reviews and star ratings for a business by its id or alias. Returns review text, rating, author, and timestamp. Example: get_reviews({ id: “garaje-san-francisco”, limit: 3 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Yelp business id or alias (from search_businesses results). |
limit | number | no | Number of reviews to return (default 3, max 50). |
sort_by | string | no | Sort order: “yelp_sort” (default) or “newest”. |
_apiKey | string | no | Optional — your own Yelp Fusion API key for higher limits; omit to use the shared Pipeworx key. |
Example call
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_reviews","arguments":{}}}'
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.