Economics
Data source: NAV Arbeidsplassen (arbeidsplassen.nav.no)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/nav-jobs/
claude_desktop_config.json
{
"mcpServers": {
"gnist-nav-jobs": {
"url": "https://context.gnist.ai/mcp/nav-jobs/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/nav-jobs/" \
-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": "get_nav_job", "arguments": {"uuid": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/nav-jobs/
3 endpoints available:
GET /rest/nav-jobs/search_nav_jobsGET /rest/nav-jobs/get_nav_jobGET /rest/nav-jobs/report_feedback
Shell
curl "https://context.gnist.ai/rest/nav-jobs/get_nav_job?uuid=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/nav-jobs/get_nav_job",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"uuid": "example"
},
)
print(resp.json())
Command Line
Command
gc nav-jobs
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
search_nav_jobsSearch Norwegian job listings from NAV Arbeidsplassen.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | any | optional | Free-text search query for Norwegian job listings (e.g. 'utvikler', 'sykepleier', 'ingeniør'). |
county | any | optional | Norwegian county name in uppercase, e.g. 'OSLO', 'ROGALAND', 'VESTLAND', 'TRØNDELAG', 'NORDLAND', 'VESTFOLD OG TELEMARK'. |
municipal | any | optional | Norwegian municipality name in uppercase, e.g. 'OSLO', 'BERGEN', 'TRONDHEIM', 'STAVANGER', 'TROMSØ'. Added to the free-text query for approximate location filtering. |
size | integer | optional | Number of results — snapped to 25 or 100 (API constraint). Default 25. (default: 25) |
offset | integer | optional | Number of results to skip for pagination (default 0). (default: 0) |
get_nav_jobGet a single Norwegian job listing by its UUID from NAV Arbeidsplassen.
| Parameter | Type | Required | Description |
|---|---|---|---|
uuid | string | required | UUID of the job listing to retrieve. |
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") |