EU company data for AI agents: KYB, sanctions, VAT, LEI, address across 12 countries.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Nordic Data.
lookup_companyBasic company data from official registries (CVR, BrΓΈnnΓΈysund, Bolagsverket, Companies House, INSEE, etc.)
validate_vatValidate a VAT number for the 27 EU member states against VIES
screen_sanctionsBulk screen up to 1000 names against UN/EU/OFAC/PEP lists (OpenSanctions, 768K+ entries)
kyb_fullMaster Know-Your-Business report β identity, persons, financials, LEI, VAT, sanctions, adverse media, risk score
autocomplete_addressAddress autocomplete with coordinates for DK (DAWA), NO (Kartverket), FR (BAN), SE and FI (OpenStreetMap Nominatim)
lookup_leiGLEIF Legal Entity Identifier lookup β forward, reverse, and parent/children relationships
A Model Context Protocol server that gives AI agents (Claude, Cursor, Claude Code, ChatGPT, Copilot, etc.) direct access to official European business data across 15 European countries.
Look up companies, validate VAT numbers, run KYB reports, screen against sanctions lists, autocomplete addresses, and resolve LEI ownership β all from inside your AI assistant.
NL and DE require a Starter+ subscription (free-tier API keys receive HTTP 402
upgrade_required). On paid tiers, NL calls cost 5x quota units and DE calls cost 3x; all other countries cost 1x.
Sign up at addonnordic.com and grab your NORDIC_API_KEY. Free tier available.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
Restart Claude Desktop. You should see "nordic-data" appear in the tools menu.
In Cursor settings β MCP β Add new server, or edit ~/.cursor/mcp.json:
ChatGPT supports remote MCP servers as custom connectors. No API key needed from you β the hosted server handles upstream authentication.
https://nordic-data-mcp-production.up.railway.app/mcpCustom connectors require a ChatGPT Pro, Business, Team, or Enterprise plan.
Same hosted endpoint, no local install:
https://nordic-data-mcp-production.up.railway.app/mcp| Tool | What it does |
|---|---|
lookup_company | Basic company data from official registries (CVR, BrΓΈnnΓΈysund, Bolagsverket, Companies House, INSEE, etc.) |
validate_vat | Validate a VAT number for the 27 EU member states against VIES |
screen_sanctions | Bulk screen up to 1000 names against UN/EU/OFAC/PEP lists (OpenSanctions, 768K+ entries) |
kyb_full | Master Know-Your-Business report β identity, persons, financials, LEI, VAT, sanctions, adverse media, risk score |
autocomplete_address | Address autocomplete with coordinates for DK (DAWA), NO (Kartverket), FR (BAN), SE and FI (OpenStreetMap Nominatim) |
lookup_lei | GLEIF Legal Entity Identifier lookup β forward, reverse, and parent/children relationships |
company_enriched | Company registry data + national industry statistics in one call (DK, NO, SE, FI) |
fr_history | French company history timeline (name, activity, status, legal-form changes) from INSEE Sirene bitemporal data |
list_endpoints | Discovery: list all read-only data endpoints in the underlying API (230+), with optional keyword filter |
get_endpoint_schema | Discovery: full parameter + response schema for one endpoint, before calling it |
call_endpoint | Discovery: execute a read-only request (GET/HEAD, plus three allowlisted POST screening queries) against any discovered endpoint |
"Look up CVR 61056416 in Denmark" β calls
lookup_company { country: "dk", id: "61056416" }β Carlsberg A/S
"Run a full KYB report on Equinor (NO 923609016)" β calls
kyb_full { country: "no", id: "923609016" }
"Is
LU26375245a valid VAT number?" β callsvalidate_vat { country: "LU", vat_number: "26375245" }
"Screen these names against sanctions: Vladimir Putin, Acme Corp, John Smith" β calls
screen_sanctions { names: [...] }
"Find the LEI for Tesco UK (00445790) and include parent and subsidiaries" β calls
lookup_lei { mode: "reverse", country: "uk", id: "00445790" }
| Country | ID type | Format |
|---|---|---|
| DK | CVR | 8 digits |
| NO | Organisasjonsnummer | 9 digits |
| SE | Organisationsnummer | 10 digits (with or without dash) |
| FI | Y-tunnus | NNNNNNN-D (7 digits + check digit) |
| IE | CRO number | 1β7 digits |
| UK | Companies House | 8 chars (digits, or prefix like SC, NI, OC) |
| FR | SIREN | 9 digits |
| DE | LEI or HRB | LEI = 20 alphanum; HRB = prefix + digits |
| CZ | IΔO | 8 digits |
| PL | NIP / REGON / KRS | NIP=10, REGON=9/14, KRS=10 |
| LV | ReΔ£istrΔcijas nr. | 11 digits |
| EE | Registrikood | 8 digits |
| NL | KvK-nummer | 8 digits |
| BE | BCE/KBO | 10 digits |
| LU | RCSL | B + digits |
The table above applies to lookup_company, kyb_full and lookup_lei (reverse mode). company_enriched covers DK, NO, SE and FI; autocomplete_address covers DK, NO, SE, FI and FR.
For validate_vat, country codes are uppercase VIES codes for the 27 EU member states β use EL (not GR) for Greece. The United Kingdom and Norway are not supported.
The only environment variable you need to set is:
| Variable | Required | Description |
|---|---|---|
NORDIC_API_KEY | yes | Your API key from addonnordic.com |
That's it. The MCP server connects to the hosted Nordic Data API for you.
For remote MCP hosting (e.g. Anthropic Connectors, Smithery, web-based clients), deploy the bundled Streamable HTTP transport:
Endpoints:
GET /healthz β health check (returns version + status)ALL /mcp β public MCP endpoint. No key required; all upstream calls are billed to the server's own NORDIC_API_KEY (freemium / discovery). Per-IP rate-limited.ALL /mcp/auth β authenticated MCP endpoint. Requires Authorization: Bearer ndk_... on every request; each call is billed to that customer's own key + quota.Both are session-based via the Mcp-Session-Id header.
This server uses static API-key authentication, not OAuth. How you connect depends on your client:
β¦/mcp/auth and supply your key as Authorization: Bearer ndk_.... Each request is billed to your own tenant + quota.β¦/mcp (no key). Otherwise such clients attempt OAuth Dynamic Client Registration (POST /register) and fail β this server has no OAuth endpoints by design and answers them with a clear JSON oauth_not_supported error (not a sign-in flow).npx -y nordic-data-mcp with NORDIC_API_KEY set (see Quick start above).Full OAuth 2.1 (so arbitrary external clients can self-onboard with their own key) is a planned Phase-2 item, not yet implemented.
A railway.toml is included for one-click deploy on Railway:
Mnymann/nordic-data-mcpnordic-data-mcpNORDIC_API_KEYNORDIC_API_KEY./mcp endpoint as defense-in-depth (tunable via PUBLIC_RATE_LIMIT / PUBLIC_RATE_WINDOW_MS). Caching is handled upstream.Issues and PRs welcome at github.com/Mnymann/nordic-data-mcp.
Please do not include API keys, request bodies, or response payloads in bug reports.
Nordic Data returns informational decision-support aggregated from official and public sources. It is not legal, compliance, financial, or professional advice, and not a definitive determination. KYB reports, sanctions/PEP matches, adverse-media hits, and risk scores are signals to review, not verdicts β verify independently and apply your own professional judgment before acting. Use of the service is subject to the AddonNordic Terms.
MIT Β© AddonNordic ApS
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/nordic-data-2)<a href="https://allmcps.com/mcp/nordic-data-2"><img src="https://allmcps.com/api/badge/nordic-data-2?style=directory" alt="Nordic Data on AllMCPs" /></a>