denue_search_in_state

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

Search businesses in a single Mexican state by keyword — matches against name, activity, or address. Use this for state-scoped queries that need more than just business name (e.g., “panaderia”, “ferreteria”). Returns paginated results.

Parameters

NameTypeRequiredDescription
keywordstringyesSearch term — matches name, economic activity description, or address text.
state_codestringyesTwo-digit state code “01”-“32” (required — use denue_search_by_name with “00” for nationwide).
page_startnumbernoFirst record (1-based, default 1)
page_endnumbernoLast record (default page_start + 24)

Example call

Arguments

{
  "keyword": "panaderia",
  "state_code": "09"
}

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_in_state","arguments":{"keyword":"panaderia","state_code":"09"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('denue_search_in_state', {
  "keyword": "panaderia",
  "state_code": "09"
});

More examples

{
  "keyword": "ferreteria",
  "state_code": "14",
  "page_start": 1,
  "page_end": 50
}

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.

Regenerated from source · build August 30, 2026