MCP server
Use the full Clarifo dataset — Helsinki, Stockholm, and SEC EDGAR — directly inside Claude, Cursor, and any MCP-compatible client. One OAuth connection, no API client to build.
The Clarifo MCP server exposes the same Nordic + US filings dataset that powers the Data API, but as Model Context Protocol tools instead of REST endpoints. Connect it once and your AI assistant — Claude Desktop, Claude on the web, Cursor, or any MCP client — can search filings, pull financials, compare companies, screen the universe, and cite every number back to a source page.
Endpoint
The server speaks streamable HTTP at a single URL:
https://mcp.clarifo.com/mcpAuthentication is OAuth 2.1 — there are no clf_ keys to paste. On first
connection your client opens a browser, you sign in with the same account you
use on clarifo.com, and the client stores the grant.
Works with any MCP client that supports OAuth.
Connect
Claude (web & desktop)
- Open claude.ai/customize/connectors.
- Click Add custom connector and paste
https://mcp.clarifo.com/mcp. - Sign in with your Clarifo account when the OAuth window appears.
Claude remembers the connection; Clarifo's tools then appear automatically and are called whenever your question needs data.
Config file (Cursor & others)
Clients that read a JSON config use the same URL with auth: "oauth":
{
"mcpServers": {
"clarifo": {
"url": "https://mcp.clarifo.com/mcp",
"auth": "oauth"
}
}
}Restart the client after editing the config. The first request triggers the OAuth login.
Plans & limits
MCP access is bundled with the paid plans — there is no separate signup.
| Plan | MCP calls / month | Pro-only tools |
|---|---|---|
| Plus | 2,000 | — |
| Pro | 20,000 | Document summaries, Reporting-standards Q&A |
| API / Custom | per contract | included |
Two tools — get_document_summary / compare_document_summaries and
answer_reporting_standards — are gated to Pro. Everything else is
available on Plus.
What the AI can call
The model chooses the right tool from your question; you do not call these directly. The catalog mirrors the Data API plus several AI-native composites:
| Area | Tools |
|---|---|
| Filings | search_filings, search_filing_content (RAG, incl. index="sp500"), get_filing_snapshot |
| Financials | get_company_financials, get_financial_statement, compare_companies, get_company_profile, get_company_snapshot, research_company |
| Segments (US) | get_segment_financials, list_company_segments, compare_segments, screen_segments |
| Screening | screen_companies, screen_companies_multi, screen_quality_growers, screen_metric_trend |
| Geography | get_revenue_geography |
| Analytics | forecast_financials, value_company (DCF / reverse DCF), detect_inflection_points, get_stock_price, get_valuation_multiples |
| Documents (Pro) | get_document_summary, compare_document_summaries |
| Standards (Pro) | answer_reporting_standards (IFRS / US GAAP / local GAAP) |
| Output | generate_visual_cards |
| Workspace | list_workspace_items, get_workspace_item |
Every read tool returns page_id values; get_filing_snapshot resolves each
into a viewable page render (Nordic) or a SEC EDGAR link (US) for audit-grade
citations.
Example prompts
Once connected, ask in natural language:
- "Compare NVIDIA and AMD data-center segment revenue and gross margin across the last four quarters."
- "Get Nokia Q1 2026 revenue and compare it to Ericsson for the same quarter."
- "Summarize the AI risk factors in Microsoft's latest 10-K and compare them to Alphabet's."
- "List S&P 500 software companies with revenue growth above 20% and FCF margin above 25% in 2025."
See also
- The Clarifo MCP overview page — capabilities, walkthrough, and the one-click connect flow.
- Coverage — exactly which markets, sources, and years are included.
- Page IDs & citations — how source verification works.