Data source: CVR via cvrapi.dk (free public API, Det Centrale Virksomhedsregister)
https://context.gnist.ai/mcp/cvr/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (4)
lookup_cvr_companyLook up a Danish company by its CVR number.
Returns company details including name, address, company type, industry,
employees, owners, and production units.
Args:
cvr_number: Danish CVR number (8 digits).
Returns:
Company record, or {"error": "not_found"} if the CVR number is unknown.
| Parameter | Type | Required | Description |
|---|---|---|---|
cvr_number | integer | required | Danish CVR number (8 digits, e.g. 10150817 for Carlsberg). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_cvr_company",
"arguments": {
"cvr_number": 1
}
}
}search_cvr_companySearch for a Danish company by name in the Central Business Register (CVR).
Returns the best-matching company with full details including address,
company type, industry, owners, and production units.
Args:
name: Company name or partial name to search for.
Returns:
Best-matching company record, or {"error": "not_found"} if no match.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | Company name to search for (e.g. 'Novo Nordisk', 'LEGO'). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_cvr_company",
"arguments": {
"name": "example"
}
}
}lookup_cvr_production_unitLook up a Danish production unit by its P-nummer.
Production units are individual business locations registered under a
parent company in the Danish CVR.
Args:
pno: Production unit number (P-nummer).
Returns:
Company record for the parent company, or {"error": "not_found"}.
| Parameter | Type | Required | Description |
|---|---|---|---|
pno | integer | required | Danish production unit number (P-nummer, 10 digits). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_cvr_production_unit",
"arguments": {
"pno": 1
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/cvr/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_cvr_company",
"arguments": {
"cvr_number": 1
}
}
},
)
print(resp.json())