Skip to main content
Glama

search_filings

Read-only

Search the Nordic financial database for company filings, press releases and macroeconomic summaries.

Use this as the primary tool for any question about Nordic listed companies, markets or macro conditions. Do not use to retrieve a full document — results are chunked text excerpts; use parse_pdf_to_text for the full original document. Do not use for Swedish company registration data — use get_company_info instead.

The database contains ~1 million vectors across four Nordic markets (NO/SE/DK/FI).

COMPANY FILINGS Annual reports (XBRL/ESEF) and quarterly reports from ~1 500 listed companies across Oslo Børs, Nasdaq Stockholm, Nasdaq Helsinki, Nasdaq Copenhagen and First North markets. Covers 2020–present. Strong coverage for NO and SE; growing coverage for DK and FI.

EXCHANGE ANNOUNCEMENTS & PRESS RELEASES Regulatory filings, exchange announcements and press releases from listed companies in NO, SE, DK and FI. Covers 2020–present.

MACROECONOMIC SUMMARIES Quarterly macro summaries covering key indicators per country: Norway (NO): policy rate, FX rates, CPI, house prices, credit growth, electricity price, salmon price, GDP components Sweden (SE): policy rate, house price index, household credit Denmark (DK): policy rate, house price index, household loans, electricity price Finland (FI): house price index, household debt-to-income ratio, electricity price Use report_type='macro_summary' and country='NO'/'SE'/'DK'/'FI' to filter. Use fiscal_year and a quarter reference in your query, e.g. "Norwegian housing market Q1 2024".

Args: query: What you are looking for, e.g. 'net interest margin outlook', 'salmon price Q3', 'dividend policy', 'fleet utilization', 'Norwegian housing market 2024 Q1', 'Swedish policy rate inflation 2023' ticker: Optional — filter by company ticker, e.g. 'SALM', 'EQNR', 'NDA' fiscal_year: Optional — filter by year, e.g. 2024 report_type: Optional — one of: 'annual_report' – Nordic XBRL/ESEF annual reports 'quarterly_report' – Quarterly/interim reports 'press_release' – Exchange announcements and press releases 'macro_summary' – Quarterly macroeconomic summaries sector: Optional — filter by sector: 'seafood' – seafood companies 'energy' – energy / oil & gas 'shipping' – shipping companies country: Optional — filter by country code: 'NO', 'SE', 'DK' or 'FI' limit: Number of results after reranking (default 5, max 20)

Returns: List of relevant text excerpts with metadata, reranked by relevance. Each result includes rerank_score, hybrid_score, vector_score, company, ticker, country, fiscal_year, report_type, period, filing_date and the full text chunk. Returns an empty list if no relevant results are found or if the Qdrant database is temporarily unreachable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fastNoSkip reranking and return results ranked by hybrid score only. Faster but less precise.
limitNoNumber of results to return (1–20)
queryYesNatural language search query, e.g. 'Equinor dividend 2024' or 'Norwegian housing market Q3'
sectorNoFilter by sector, e.g. 'energy', 'financials', 'salmon'
sourceNoFilter by data source, e.g. 'xbrl_esef', 'newsweb', 'mfn_nordics', 'nasdaq_se'
tickerNoFilter by company ticker, e.g. 'EQNR', 'SALM', 'NDA'
countryNoFilter by country: NO, SE, DK, or FI
fiscal_yearNoFilter by fiscal year, e.g. 2024. Use 0 for no filter
report_typeNoFilter by type: annual_report, quarterly_report, press_release, exchange_announcement, macro_summary
max_chunk_indexNoOnly return chunks with chunk_index <= this value. Use 3 to target introductory sections of long documents. Use 0 for no filter.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / fast
      Added value: +{
      +  "default": false,
      +  "description": "Skip reranking and return results ranked by hybrid score only. Faster but less precise.",
      +  "type": "boolean"
      +}
  2. Changed1 schema field changed
    • addedInput schema / properties / max_chunk_index
      Added value: +{
      +  "default": 0,
      +  "description": "Only return chunks with chunk_index <= this value. Use 3 to target introductory sections of long documents. Use 0 for no filter.",
      +  "type": "integer"
      +}
  3. Changed1 schema field changed
    • addedInput schema / properties / source
      Added value: +{
      +  "default": "",
      +  "description": "Filter by data source, e.g. 'xbrl_esef', 'newsweb', 'mfn_nordics', 'nasdaq_se'",
      +  "type": "string"
      +}
  4. Changed7 schema fields changed
    • addedInput schema / properties / country / description
      Added value: +"Filter by country: NO, SE, DK, or FI"
    • addedInput schema / properties / fiscal_year / description
      Added value: +"Filter by fiscal year, e.g. 2024. Use 0 for no filter"
    • addedInput schema / properties / limit / description
      Added value: +"Number of results to return (1–20)"
    • addedInput schema / properties / query / description
      Added value: +"Natural language search query, e.g. 'Equinor dividend 2024' or 'Norwegian housing market Q3'"
    • addedInput schema / properties / report_type / description
      Added value: +"Filter by type: annual_report, quarterly_report, press_release, exchange_announcement, macro_summary"
    • addedInput schema / properties / sector / description
      Added value: +"Filter by sector, e.g. 'energy', 'financials', 'salmon'"
    • addedInput schema / properties / ticker / description
      Added value: +"Filter by company ticker, e.g. 'EQNR', 'SALM', 'NDA'"
  5. Changed1 schema field changed
    • addedOutput schema / description
      Added value: +"Generic wrapper for non-object return types."
  6. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Description aligns with readOnlyHint=true, indicating a safe read-only operation. It adds context: database contains ~1M vectors, results are chunked excerpts reranked by relevance, returns empty list if no results or database unreachable. No contradiction with annotations.

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

Conciseness4/5

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

Description is lengthy but well-structured with sections for different content types (COMPANY FILINGS, EXCHANGE ANNOUNCEMENTS, MACROECONOMIC SUMMARIES) and uses bullet points. Every sentence adds value given the complexity (10 params, multiple categories). Minor redundancy in some examples but overall efficient.

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?

Given 10 parameters, 1 required, full schema description, and no output schema in input (but has it according to context), the description covers all necessary aspects: database scope, parameter details, usage examples, return format, and error handling. It is complete for an agent to invoke correctly.

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

Parameters5/5

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

Schema coverage is 100%, and the description's Args section adds significant value with examples, allowed values, and context for each parameter. For instance, query examples include 'net interest margin outlook', 'Norwegian housing market Q4', and report_type options are listed with explanations. This exceeds what the schema alone provides.

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?

Description clearly states the tool searches the Nordic financial database for company filings, press releases, and macro summaries. It distinguishes from siblings by specifying it is the primary tool for Nordic-related queries and explicitly telling agents not to use it for full document retrieval (use parse_pdf_to_text) or Swedish company registration (use get_company_info).

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

Usage Guidelines5/5

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

Provides explicit when-to-use ('primary tool for questions about Nordic listed companies, markets or macro conditions') and when-not-to-use ('do not use to retrieve a full document', 'do not use for Swedish company registration data') with alternatives. Includes concrete examples for macro summaries and query patterns.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.