Skip to main content
Glama
7nashinick

norwegian-data-mcp

get_company_financials

Read-only

Retrieve a Norwegian company's latest filed annual accounts, including revenue, profit, assets, and equity, using its organization number. Returns 'no accounts filed' if unavailable.

Instructions

Latest filed annual accounts (aarsregnskap) for a Norwegian company from Regnskapsregisteret: revenue (driftsinntekter), operating profit (driftsresultat), net result (aarsresultat), total assets (sumEiendeler), equity (egenkapital), debt split, accounting period and currency. Only the most recent filed year is available; a link to the official annual-report PDF is included. Answers 'what was X's revenue/profit'. Not available for all entities (sole proprietorships may not file); a clear 'no accounts filed' answer is returned, not an error. Example: orgnr='923609016'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgnrYes9-digit organisation number

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint/openWorldHint annotations, the description discloses valuable behavior: only the latest filed year exists, a PDF link is included, coverage is not universal, and missing data returns a clear 'no accounts filed' result rather than an error. These are exactly the traits an agent needs to handle results and failures.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the core purpose, then the field list, then constraints and edge cases. Dense but every sentence earns its place; no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Since an output schema exists, return-value explanation is not required, yet the description still summarizes the returned fields. Combined with annotations and the documented edge cases, an agent has everything needed to invoke and interpret this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (the single orgnr parameter is documented as '9-digit organisation number'), so the schema carries the load. The description adds a concrete example value (orgnr='923609016'), which is mildly helpful but not substantive parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Specific verb+resource: retrieves latest filed annual accounts for a Norwegian company from Regnskapsregisteret, with an enumerated field list (revenue, operating profit, net result, total assets, equity, debt split, period, currency). It is clearly distinguishable from the other get_company* siblings by focusing on financial statements and names the exact source registry.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states the triggering question ('what was X's revenue/profit') and the key constraint that only the most recent filed year is available, plus the edge case that sole proprietorships may not file. No sibling alternative is named explicitly (e.g. get_company for general info), so it falls short of full when/when-not routing, but the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.