denue_search_nearby
Pack: denue · Endpoint: https://gateway.pipeworx.io/denue/mcp
Find businesses near a coordinate. Returns establishments matching the keyword within the given radius (max 5000m).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
condition | string | yes | Search keyword — business name, brand, or activity (e.g., “oxxo”, “cafe”, “farmacia”). Use “todos” for all establishments in radius. |
lat | number | yes | Latitude (decimal degrees) |
lng | number | yes | Longitude (decimal degrees) |
radius_m | number | no | Search radius in meters (1-5000, default 500) |
Example call
Arguments
{
"condition": "oxxo",
"lat": 19.4326,
"lng": -99.1332,
"radius_m": 1000
}
curl
curl -X POST https://gateway.pipeworx.io/denue/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"denue_search_nearby","arguments":{"condition":"oxxo","lat":19.4326,"lng":-99.1332,"radius_m":1000}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('denue_search_nearby', {
"condition": "oxxo",
"lat": 19.4326,
"lng": -99.1332,
"radius_m": 1000
});
More examples
{
"condition": "cafe",
"lat": 20.6762,
"lng": -103.3455
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"denue": {
"url": "https://gateway.pipeworx.io/denue/mcp"
}
}
}
See Getting Started for client-specific install steps.