denue_establishment

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

Get full details for a single establishment by DENUE ID (the “Id” field from search results).

Parameters

NameTypeRequiredDescription
idstringyesEstablishment Id (numeric string, e.g., “9988845”)

Example call

Arguments

{
  "id": "9988845"
}

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_establishment","arguments":{"id":"9988845"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('denue_establishment', {
  "id": "9988845"
});

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