Business
Data source: Brønnøysundregistrene, Bolagsverket, PRH, CVR
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/nordic-registry/
claude_desktop_config.json
{
"mcpServers": {
"gnist-nordic-registry": {
"url": "https://context.gnist.ai/mcp/nordic-registry/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/nordic-registry/" \
-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": "search_nordic_companies", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/nordic-registry/
4 endpoints available:
GET /rest/nordic-registry/search_nordic_companiesGET /rest/nordic-registry/lookup_nordic_companyGET /rest/nordic-registry/list_nordic_registry_sourcesGET /rest/nordic-registry/report_feedback
Shell
curl "https://context.gnist.ai/rest/nordic-registry/search_nordic_companies?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/nordic-registry/search_nordic_companies",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc nordic-registry
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (4)
search_nordic_companiesSearch for companies across all Nordic registries in parallel.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Company name to search. |
country | any | optional | Filter: 'NO' (Norway), 'SE' (Sweden), 'FI' (Finland), 'DK' (Denmark). Omit for all. |
limit | integer | optional | Max results per registry. (default: 10) |
lookup_nordic_companyLook up a specific company by national ID across Nordic registries.
| Parameter | Type | Required | Description |
|---|---|---|---|
national_id | string | required | National business ID. Auto-detected: 9 digits (NO), XXXXXX-XXXX (SE), XXXXXXX-X (FI), 8 digits (DK). |
list_nordic_registry_sourcesList all Nordic company registry sources and their coverage.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |