Data source: Brreg, Doffin, Domstol, NAV Arbeidsplassen
Overview
Company Intelligence builds a holistic view by combining data from Brreg, Doffin, Domstol, NAV Arbeidsplassen. Rather than querying each source independently, you get a unified interface with 3 tools. This tutorial shows you how to use each one.
Prerequisites
- Sign up at https://context.gnist.ai/signup for a free API key (100 calls/day).
- Choose your integration method: MCP protocol or REST API.
Connect via MCP
Add to your MCP client config (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"gnist-company-intelligence": {
"url": "https://context.gnist.ai/mcp/company-intelligence/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Tools (3)
company_profile
Comprehensive Norwegian company profile — registry, leadership, procurement, court, jobs, compliance, public records, and legislation. Fetches company details from Brønnøysund Register (brreg), then enriches with procurement (Doffin), court hearings (Domstol), job listings (NAV), compliance screening (sanctions/offshore), public journal (eInnsyn), and relevant legislation (Lovdata) in parallel. Returns partial results if any enrichment source is unavailable. Examples: company_profile(org_number="923609016") # Equinor ASA company_profile(org_number="985399077") # Vipps AS
| Parameter | Type | Required | Description |
|---|---|---|---|
org_number | string | required | Norwegian 9-digit organisation number (e.g. '923609016'). |
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "company_profile", "arguments": {"org_number": "'923609016'"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/company-intelligence/",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={'id': 1,
'jsonrpc': '2.0',
'method': 'tools/call',
'params': {'arguments': {'org_number': "'923609016'"},
'name': 'company_profile'}},
)
print(resp.json())
company_360
Alias for company_profile — comprehensive Norwegian company due diligence. Same as company_profile(). Kept for backward compatibility with existing composite tool users. Examples: company_360(org_number="923609016")
| Parameter | Type | Required | Description |
|---|---|---|---|
org_number | string | required | Norwegian 9-digit organisation number (e.g. '923609016'). |
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "company_360", "arguments": {"org_number": "'923609016'"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/company-intelligence/",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={'id': 1,
'jsonrpc': '2.0',
'method': 'tools/call',
'params': {'arguments': {'org_number': "'923609016'"}, 'name': 'company_360'}},
)
print(resp.json())
report_feedback
Report 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) |
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "report_feedback", "arguments": {"feedback": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/company-intelligence/",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={'id': 1,
'jsonrpc': '2.0',
'method': 'tools/call',
'params': {'arguments': {'feedback': 'example'}, 'name': 'report_feedback'}},
)
print(resp.json())
FAQ
What data does Company Intelligence provide?
Norwegian company due diligence — registry data, leadership, procurement history, court hearings, and job listings from multiple government sources. It exposes 3 tools: company_profile, company_360, report_feedback.
What do I need to get started?
A Gnist API key (free tier: 100 calls/day). Sign up at https://context.gnist.ai/signup.
What format does the Company Intelligence API return?
JSON, via either MCP protocol (JSON-RPC 2.0) or REST API.