Offentlig Data MCP Service

Access Norwegian public data through our Model Context Protocol (MCP) service. This service allows AI assistants like Claude and Cursor to retrieve data about companies, people, and other entities in Norway.

Installation Instructions

To install on Claude or Cursor:
{
    "mcpServers": {
        "offentligdata": {
            "command": "npx",
            "args": [
                "-y",
                "mcp-remote", 
                "https://usgttxbcjq.a.pinggy.link/mcp"
            ]
        }
    }
}

Available Functions

organisasjonsnummer_for_selskap

Returns the organisasjonsnummer for a company or multiple companies if there is ambiguity.

Parameters: company_name (string)

personinformasjon

Retrieves information about a person based on their name.

Parameters: person_name (string)

selskapsdetaljer

Retrieves detailed information for a company by its organization number.

Parameters: org_nr (string, 9 digits)

aksjeeiere_for_selskap

Retrieves a list of shareholders for a given company organization number.

Parameters: org_nr (string, 9 digits)

selskapets_aksjeposter

Retrieves a list of stocks owned by a given company (i.e., where the company is a shareholder).

Parameters: org_nr (string, 9 digits)

aksjeposter_for_person

Retrieves stock holdings for an individual based on their name and birth year.

Parameters: name (string), birth_year (string, YYYY format)

roller_i_enhet

Retrieves roles for a given organization number from Brønnøysund Registeret. Contains information about the board members, the CEO, accountant and other roles.

Parameters: org_number (string, 9 digits)

underenheter_for_selskap

Retrieves "underenheter" (sub-entities/branches) for a given parent organization number.

Parameters: overordnet_enhet (string, 9 digits)

eierskapsnettverk_for_person

Calculates and retrieves the deep ownership network for an individual. This traces ownership through multiple levels of companies.

Parameters: name (string), birth_year (string, YYYY format), postal_code (string), max_depth (integer, default 1)

eierskapsnettverk_for_selskap

Calculates and retrieves the deep ownership network for a company. This traces ownership through multiple levels of other companies.

Parameters: org_nr (string, 9 digits), max_depth (integer, default 4)

tildelinger_for_selskap

Retrieves "tildelinger" (allocations/grants) for a given organization number.

Parameters: org_nr (string, 9 digits)

eu_tildelinger_for_selskap

Retrieves EU grants awarded to a specific organization number.

Parameters: org_nr (string, 9 digits)

forskningsradet_tildelinger_for_selskap

Retrieves grants from "Forskningsrådet" (The Research Council of Norway) for a specific organization number.

Parameters: org_nr (string, 9 digits)

skattefunnprosjekter_for_selskap

Retrieves SkatteFUNN projects for a given organization number.

Parameters: org_nr (string, 9 digits)

Usage Examples

Example 1: Finding a company's organization number

Ask the AI assistant:

"Can you find the organization number for Equinor?"

Example 2: Getting company details

Ask the AI assistant:

"Get details for company with organization number 923609016"

Example 3: Finding shareholders of a company

Ask the AI assistant:

"Who are the shareholders of organization number 923609016?"