A straightforward wrapper around the Yelp Fusion API, letting Claude search for restaurants, read reviews, and pull business details without you needing to wire up OAuth or wrangle API keys yourself. Hosted by Pipeworx as a remote MCP server, so there's nothing to install or run locally. The source doesn't list specific tools, but given it wraps api.yelp.com/v3, you're likely getting business search, reviews, and location lookups. Pipeworx adds an ask_pipeworx function that interprets plain English questions and routes them to the right Yelp endpoint automatically. Useful if you're building location-aware features or need real-world business data in your Claude workflows without managing yet another API integration.
Yelp MCP — wraps the Yelp Fusion API (api.yelp.com/v3)
Part of Pipeworx — an MCP gateway connecting AI agents to 737+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"yelp": {
"url": "https://gateway.pipeworx.io/yelp/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 737+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Yelp data" })
The gateway picks the right tool and fills the arguments automatically.
MIT