GnistAI GnistAI
Log in

Skipsregisteret (Norwegian Ship Registry)

Search Norwegian Ship Registers (NIS/NOR/BYGG) — vessel lookup, ownership, technical specs, and reserved names from the Norwegian Maritime Authority (Sjøfartsdirektoratet).

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Government

Data source: Sjøfartsdirektoratet (Norwegian Maritime Authority)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/skipsregisteret/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-skipsregisteret": {
      "url": "https://context.gnist.ai/mcp/skipsregisteret/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/skipsregisteret/" \
  -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_vessels", "arguments": {"text": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/skipsregisteret/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/skipsregisteret/search_vessels?text=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/skipsregisteret/search_vessels",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "text": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc skipsregisteret

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

search_vessels
Search Norwegian ship registers (NIS and NOR) for vessels.
ParameterTypeRequiredDescription
textstringrequiredSearch text — vessel name, call sign, or IMO number (e.g. "VIKING VISION", "LNXF", "8907034").
languagestringoptionalResponse language: 'en' (English) or 'no' (Norwegian). Default: 'en'. (default: "en")
get_vessel_details
Get full details for a Norwegian-registered vessel.
ParameterTypeRequiredDescription
vessel_idintegerrequiredVessel ID from search results (e.g. 30054). A positive integer.
search_reserved_names
Check reserved vessel names in Norwegian ship registers (NIS/NOR).
ParameterTypeRequiredDescription
textstringrequiredSearch text for reserved vessel names (e.g. "VIKING", "POLARIS").
languagestringoptionalResponse language: 'en' (English) or 'no' (Norwegian). Default: 'en'. (default: "en")
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related