GnistAI GnistAI
Log in

CVR (Danish Company Registry)

Danish company registry — CVR lookup, name search, production units, owners, industry codes from Det Centrale Virksomhedsregister.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Legal

Data source: CVR via cvrapi.dk (free public API, Det Centrale Virksomhedsregister)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/cvr/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-cvr": {
      "url": "https://context.gnist.ai/mcp/cvr/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/cvr/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "lookup_cvr_company", "arguments": {"cvr_number": 1}}}'

API REST API

API Root https://context.gnist.ai/rest/cvr/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/cvr/lookup_cvr_company?cvr_number=1" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/cvr/lookup_cvr_company",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "cvr_number": 1
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc cvr

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

lookup_cvr_company
Look up a Danish company by its CVR number.
ParameterTypeRequiredDescription
cvr_numberintegerrequiredDanish CVR number (8 digits, e.g. 10150817 for Carlsberg).
search_cvr_company
Search for a Danish company by name in the Central Business Register (CVR).
ParameterTypeRequiredDescription
namestringrequiredCompany name to search for (e.g. 'Novo Nordisk', 'LEGO').
lookup_cvr_production_unit
Look up a Danish production unit by its P-nummer.
ParameterTypeRequiredDescription
pnointegerrequiredDanish production unit number (P-nummer, 10 digits).
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related