Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nordicfinancialnews.com/llms.txt

Use this file to discover all available pages before exploring further.

Connect your AI agents and assistants to Nordic Financial News directly using the Model Context Protocol. The MCP server provides the same data as the REST API through a tool-based interface designed for LLMs.

MCP server endpoint

POST https://nordicfinancialnews.com/mcp
Streamable HTTP transport. All requests use POST with Content-Type: application/json.

How to authenticate MCP requests

The MCP server uses the same API keys as the REST API. Include a Bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Requires a Plus or Pro plan.

How to connect your AI client

claude mcp add --transport http nordic-financial-news \
  https://nordicfinancialnews.com/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

How to verify your connection

Verify your API key works by listing available MCP tools:
curl -X POST https://nordicfinancialnews.com/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'

Example prompts

Once connected, try asking your AI assistant:
  • “What are the latest news articles about Volvo?”
  • “Summarize trending stories from Sweden this week”
  • “Find companies listed on the Helsinki exchange”
  • “Show me recent press releases from Norwegian companies”
Last modified on April 14, 2026