Legal
Data source: Bolagsverket (Swedish Companies Registration Office)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/bolagsverket/
claude_desktop_config.json
{
"mcpServers": {
"gnist-bolagsverket": {
"url": "https://context.gnist.ai/mcp/bolagsverket/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/bolagsverket/" \
-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": "lookup_bolagsverket_company", "arguments": {"org_number": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/bolagsverket/
4 endpoints available:
GET /rest/bolagsverket/lookup_bolagsverket_companyGET /rest/bolagsverket/search_bolagsverket_companiesGET /rest/bolagsverket/get_bolagsverket_changesGET /rest/bolagsverket/report_feedback
Shell
curl "https://context.gnist.ai/rest/bolagsverket/lookup_bolagsverket_company?org_number=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/bolagsverket/lookup_bolagsverket_company",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"org_number": "example"
},
)
print(resp.json())
Command Line
Command
gc bolagsverket
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (4)
lookup_bolagsverket_companyLook up a Swedish company by its organisation number in Bolagsverket.
| Parameter | Type | Required | Description |
|---|---|---|---|
org_number | string | required | Swedish organisation number — 10 digits, with or without hyphen (e.g. "5564866993", "556486-6993"). |
search_bolagsverket_companiesSearch Swedish companies by name in the Bolagsverket bulk-data cache.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | Company name to search for (at least 2 characters). |
limit | integer | optional | Maximum number of results to return (1–100). (default: 20) |
get_bolagsverket_changesGet recent changes to Swedish company data from Bolagsverket.
| Parameter | Type | Required | Description |
|---|---|---|---|
since | string | required | ISO 8601 timestamp — return changes captured after this time (e.g. "2026-04-01T00:00:00Z"). |
limit | integer | optional | Maximum number of changes to return (1–100, default 50). (default: 50) |
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") |