Skip to main content
Glama
reidar80

Norwegian Business Registry MCP Server

by reidar80

get_icnpo_categories

Retrieve ICNPO categories for non-profit organizations from the Norwegian Business Registry, with descriptions available in specified languages.

Instructions

Get ICNPO (International Classification of Non-Profit Organisation) categories

Input Schema

NameRequiredDescriptionDefault
spraakNoLanguage for descriptions (e.g., 'NOB')

Input Schema (JSON Schema)

{ "properties": { "spraak": { "description": "Language for descriptions (e.g., 'NOB')", "type": "string" } }, "type": "object" }

Implementation Reference

  • Core handler function in BrregApiClient that makes the API request to fetch ICNPO categories.
    async getIcnpoCategories(params: { spraak?: string } = {}) { return this.makeRequest('/frivillighetsregisteret/api/icnpo-kategorier', params); }
  • Input schema and metadata for the get_icnpo_categories tool, registered in the ListTools response.
    name: "get_icnpo_categories", description: "Get ICNPO (International Classification of Non-Profit Organisation) categories", inputSchema: { type: "object", properties: { spraak: { type: "string", description: "Language for descriptions (e.g., 'NOB')" } } } }
  • Dispatch case in CallToolRequestSchema handler that executes the tool by calling apiClient.getIcnpoCategories and returns the JSON response.
    case "get_icnpo_categories": const icnpoCategories = await apiClient.getIcnpoCategories(request.params.arguments as any); return { content: [ { type: "text", text: JSON.stringify(icnpoCategories, null, 2), }, ], };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/reidar80/BRREG-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server