danish-cvr
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@danish-cvrLook up Novo Nordisk"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🇩🇰 Danish CVR MCP Server
An MCP (Model Context Protocol) server that gives AI assistants access to the Danish company registry (CVR). Look up any Danish or Norwegian company by name, CVR number, phone, or production unit number.
Why?
The MCP ecosystem has 500+ servers, but almost none cover Nordic/EU data sources. This is the first MCP server for Danish company data. Built for AI agents that need to research Danish businesses.
Related MCP server: Brreg MCP Server
Tools
Tool | Description |
| Search by company name, CVR number, P-number, or phone |
| Direct lookup by 8-digit CVR number |
Example queries
"Look up Novo Nordisk" → Returns full company details, 33K employees, founded 1931
"Find CVR 24256790" → Direct CVR lookup
"Search for companies in Gilleleje" → Name-based search
"Is CVR 12345678 bankrupt?" → Returns bankruptcy status
Install
Claude Desktop / OpenClaw
Add to your MCP config:
{
"mcpServers": {
"danish-cvr": {
"command": "npx",
"args": ["-y", "mcp-danish-cvr"]
}
}
}Local development
git clone https://github.com/robobobby/mcp-danish-cvr
cd mcp-danish-cvr
npm install
npm startData
Data comes from cvrapi.dk, a free API wrapping the official Danish CVR registry.
Fields returned: Company name, CVR number, address, industry (code + description), company type, employee count, phone, email, website, founding/closing date, owners, production units, bankruptcy status.
Countries: Denmark (dk) and Norway (no).
Rate limit: 50 free lookups per day per IP.
Requirements
Node.js 18+
No API key needed
License
MIT
Available Tools
2 toolscvr_lookupA
Look up a specific Danish company by its 8-digit CVR number. Returns full company details.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | 'dk' (default) or 'no' | |
| cvr_number | Yes | 8-digit CVR number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavior. It states 'Returns full company details,' which indicates the nature of the output, but it does not disclose potential error behavior (e.g., what happens if the CVR number is not found), whether the operation is read-only, or that the `country` parameter can return Norwegian data. The description provides only a minimal behavioral snapshot.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 15 words, front-loaded with the verb 'Look up' and the resource. It contains no filler and every word serves a purpose. This is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 params, no output schema), the description is adequate but has gaps. It does not explain what 'full company details' includes, nor does it mention the `country` parameter or provide guidance on using `cvr_search` as an alternative. Since there is no output schema, the description should provide more detail about the return value and potential edge cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description itself adds no extra meaning to the parameters; it only mentions '8-digit CVR number,' which is already in the schema's description. It does not clarify the `country` parameter's role, and the description's focus on 'Danish' could even conflict with the country enum. Thus the description adds no value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Look up a specific Danish company by its 8-digit CVR number. Returns full company details.' It uses a specific verb and resource, and distinguishes from the sibling `cvr_search` by focusing on exact-number lookup. However, the description is slightly misleading because the schema allows a `country` parameter with values 'dk' or 'no', yet the description only mentions Danish companies, which conflicts with that broader scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when you have a specific 8-digit CVR number. It says 'Look up a specific... by its 8-digit CVR number,' which gives clear context for when to use this tool over a search tool. However, it does not explicitly mention the sibling `cvr_search` or explain when to prefer one over the other, so it lacks explicit exclusion/alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cvr_searchA
Search the Danish CVR registry for a company by name, CVR number, P-number, or phone. Returns company details including address, industry, employees, owners, and status. Also supports Norwegian companies (country=no).
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Company name, CVR number, P-number, or phone number to search for | |
| country | No | Country to search in. 'dk' = Denmark (default), 'no' = Norway | |
| search_type | No | Specific search type. 'auto' (default) searches all fields. 'vat' = CVR number, 'name' = company name, 'produ' = P-number, 'phone' = phone number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It adds meaningful context by detailing the return fields (address, industry, employees, owners, status) and the country scope (Denmark/Norway). While it doesn't address rate limits or error behavior, it gives a solid picture of what the tool does and returns.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three concise, front-loaded sentences. The first sentence states the primary action and supported search keys, the second lists return content, and the third adds the Norwegian scope. Every sentence contributes useful information with no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, and the description does not clarify whether it returns a single company object or a list of matches, which is important for a search tool. The input schema is well-covered, and the return fields are listed, but the result shape ambiguity leaves an avoidable gap in understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so all parameters are already documented. The description adds no significant new parameter-level detail beyond what the schema provides; it merely restates that searches can be done by name, CVR, P-number, or phone, which matches the search_type enum. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches the Danish CVR registry by name, CVR number, P-number, or phone and returns company details. It uses a specific verb and resource, making the purpose unmistakable. However, it does not explicitly distinguish this from the sibling tool cvr_lookup, so it stops short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on what kinds of searches are supported (name, CVR, P-number, phone) and that Norwegian companies are also searchable with country=no. It does not explicitly say when to use this tool instead of cvr_lookup or when not to use it, but the intended usage is well implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The two tools both return company details, and cvr_search supports lookup by CVR number, which overlaps with cvr_lookup's specific purpose. However, the descriptions clarify that cvr_lookup is for exact CVR lookups while cvr_search is broader, reducing some ambiguity.
Both tools follow the same cvr_<verb> pattern, using clear, consistent snake_case naming. The verb prefixes 'search' and 'lookup' are semantically appropriate.
With only two tools, the server feels thin for a registry API, but the two operations cover the core lookup scenarios. The count is borderline but not extreme.
Search by multiple identifiers and direct CVR lookup cover the primary read-only use cases for a public company registry. No mutating operations are expected, so the surface seems largely complete, though additional specialized queries could be added.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Agent-native API for Finnish public company data via YTJ. Pay-per-call $0.01 USDC over x402.
Nordic company intelligence: look up companies, AI summaries, scores and signals via MCP.
Compliance infrastructure API connecting AI agents to Norwegian government systems (Altinn, BRREG).
CompanyLens is a remote MCP server giving AI agents instant access to official company registry data across 19 jurisdictions in Europe, the Americas, and Asia-Pacific. Eighteen read-only tools let you search companies and people, look up officers and beneficial owners, map corporate networks through shared directors, screen names against the UK disqualified directors register, find every company at a registered address, and pull filing history — all from a single connector. Visit our website: https://companylens.io
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables comprehensive access to the Norwegian Business Registry API for querying company information, board members, subsidiaries, organizational data, and voluntary organizations. Provides real-time access to over 1 million registered Norwegian entities with detailed corporate structure and governance data.15198MIT
- AlicenseBqualityCmaintenanceEnables interaction with the Norwegian Business Registry (Brønnøysundregistrene) API to search and retrieve detailed information about Norwegian companies, subunits, roles, organization forms, municipalities, and NACE industry codes.18191MIT
- AlicenseNot gradedqualityDmaintenanceProvides access to Norway's official business registry for searching companies, looking up organizational details, and identifying company roles and sub-units. It utilizes data from Brønnøysundregistrene to enable detailed queries by industry, municipality, or organization number.15MIT
- AlicenseAqualityCmaintenanceEnables looking up Danish companies by CVR number, name, or phone via cvrapi.dk.2MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/robobobby/mcp-danish-cvr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server