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 Code
Claude Desktop
Cursor
Codex
Other clients
claude mcp add --transport http nordic-financial-news \
https://nordicfinancialnews.com/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Requires the mcp-remote npm proxy. Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):{
"mcpServers": {
"nordic-financial-news": {
"command": "npx",
"args": [
"mcp-remote",
"https://nordicfinancialnews.com/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}
Requires a full restart of Claude Desktop after saving. Add to .cursor/mcp.json in your project:{
"mcpServers": {
"nordic-financial-news": {
"type": "streamable-http",
"url": "https://nordicfinancialnews.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
codex mcp add nordic-financial-news \
--url https://nordicfinancialnews.com/mcp \
--bearer-token-env-var NFN_API_KEY
Set the NFN_API_KEY environment variable to your API key before starting Codex.Use any MCP client that supports Streamable HTTP transport:| Setting | Value |
|---|
| Transport | Streamable HTTP |
| Method | POST |
| URL | https://nordicfinancialnews.com/mcp |
| Header | Authorization: Bearer YOUR_API_KEY |
| Header | Content-Type: application/json |
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”