get_entity

Pack: brreg-no · Endpoint: https://gateway.pipeworx.io/brreg-no/mcp

Full record for one entity by 9-digit org number. e.g. {orgnr:“923609016”} (Equinor ASA). Returns navn, organisasjonsform, naeringskode1, forretningsadresse, antallAnsatte, stiftelsesdato, etc.

Parameters

NameTypeRequiredDescription
orgnrstringyes9-digit org number, e.g. “923609016”.

Example call

Arguments

{
  "orgnr": "923609016"
}

curl

curl -X POST https://gateway.pipeworx.io/brreg-no/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_entity","arguments":{"orgnr":"923609016"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_entity', {
  "orgnr": "923609016"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "brreg-no": {
      "url": "https://gateway.pipeworx.io/brreg-no/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026