Health
Data source: interaksjoner.no (DIPS ASA / DMP — Direktoratet for medisinske produkter)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/interaksjoner/
claude_desktop_config.json
{
"mcpServers": {
"gnist-interaksjoner": {
"url": "https://context.gnist.ai/mcp/interaksjoner/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/interaksjoner/" \
-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": "check_interactions", "arguments": {"drugs": "..."}}}'
REST API
API Root
https://context.gnist.ai/rest/interaksjoner/
3 endpoints available:
GET /rest/interaksjoner/check_interactionsGET /rest/interaksjoner/get_trade_namesGET /rest/interaksjoner/report_feedback
Shell
curl "https://context.gnist.ai/rest/interaksjoner/check_interactions?drugs=..." \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/interaksjoner/check_interactions",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"drugs": "..."
},
)
print(resp.json())
Command Line
Command
gc interaksjoner
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
check_interactionsCheck drug-drug interactions for Norwegian medications via interaksjoner.no.
| Parameter | Type | Required | Description |
|---|---|---|---|
drugs | list[string] | required | List of drug names, substance names, or ATC codes to check for interactions. Accepts Norwegian trade names (e.g. 'Paracet', 'Marevan'), international substance names (e.g. 'paracetamol', 'warfarin'), or ATC codes (e.g. 'N02BE01'). Maximum 40 drugs per query. |
get_trade_namesGet Norwegian trade names (brand names) for a given ATC code.
| Parameter | Type | Required | Description |
|---|---|---|---|
atc_code | string | required | ATC code to look up trade names for. Examples: 'N02BE01' (paracetamol), 'B01AA03' (warfarin), 'C07AB02' (metoprolol). |
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") |