Data source: domstol.no (Norwegian Courts Administration)
https://context.gnist.ai/mcp/domstol/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (3)
search_hearingsSearch Norwegian court hearing schedules (berammingslister).
Query upcoming and recent court hearings across all Norwegian courts.
Both date_from and date_to are required. Results include case details,
judges, attorneys, and hearing intervals.
Args:
date_from: Start date (ISO format, e.g. '2026-03-17').
date_to: End date (ISO format, e.g. '2026-03-24').
query: Optional free-text search (e.g. court name, case subject).
page: Page number (1-indexed, default 1).
page_size: Results per page (1-100, default 25).
sort_by: Sort field: 'rettsmoeteDato' (hearing date) or 'rettsmoete'.
sort_ascending: Sort direction (default true = earliest first).
Returns:
Dict with 'total' count, 'page', 'page_size', and 'hearings' list.
Each hearing has: id, court, case_number, subject, start_date, end_date,
judge, attorneys, parties, hearing_intervals.
| Parameter | Type | Required | Description |
|---|---|---|---|
date_from | string | required | Start date (ISO format, e.g. '2026-03-17'). |
date_to | string | required | End date (ISO format, e.g. '2026-03-24'). |
query | any | optional | Optional free-text search (e.g. court name, case subject). |
page | integer | optional | Page number (1-indexed, default 1). (default: 1) |
page_size | integer | optional | Results per page (1-100, default 25). (default: 25) |
sort_by | string | optional | Sort field: 'rettsmoeteDato' (hearing date) or 'rettsmoete'. (default: "rettsmoeteDato") |
sort_ascending | boolean | optional | Sort direction (default true = earliest first). (default: true) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_hearings",
"arguments": {
"date_from": "example",
"date_to": "example"
}
}
}list_courtsList all known Norwegian courts.
Returns the full list of courts (tingretter, lagmannsretter, jordskifteretter,
and Høyesterett) whose hearings appear in domstol.no schedules.
Returns:
Dict with 'count' and 'courts' list. Each court has a 'name' field.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_courts",
"arguments": {}
}
}report_feedbackReport 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") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/domstol/" \
-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_hearings", "arguments": {"date_from": "example", "date_to": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/domstol/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_hearings",
"arguments": {
"date_from": "example",
"date_to": "example"
}
}
},
)
print(resp.json())