Daloopa MCP Server

Official

Analyst-grade financial fundamentals and KPIs, every number linked back to the filing it came from.

Remote serverstreamable-http

What is the Daloopa MCP server?

Connect Daloopa to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Daloopa's hosted MCP endpoint gives AI assistants source-linked fundamentals, segment KPIs, guidance and SEC filing text for equity research work. The daloopa mcp server is what makes that connection.

What the server does

Daloopa's hosted MCP endpoint gives AI assistants source-linked fundamentals, segment KPIs, guidance and SEC filing text for equity research work.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • discover_companies — Resolve a ticker or company name to Daloopa's ticker, corporate name and internal company ID
  • discover_company_series — List the financial metrics and data series Daloopa tracks for a given company
  • discover_company_documents — Enumerate indexed documents for a company — 10-K, 10-Q, 8-K, transcripts and investor presentations
  • get_company_fundamentals — Return income statement, balance sheet and cash flow values for the requested metrics and periods
  • get_document_content — Fetch the full text of an indexed document, with section-level access so large filings stay manageable
  • search_documents — Keyword search across filings and transcripts for qualitative detail on guidance, strategy and risk
  • get_stock_prices — Retrieve daily OHLCV price history for valuation multiples and price-based analysis
  • list_skills — List Daloopa's structured analysis workflows with their slugs, titles and required inputs
  • get_skill — Fetch the full step-by-step instructions for a named investing skill such as a DCF or comps build

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: DALOOPA_MCP_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

A Daloopa account with MCP access. Authentication is OAuth by default; headless clients can send an Authorization: Bearer or x-api-key header instead.

Where it fits

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Daloopa's toolset — discover_companies, discover_company_series, discover_company_documents and 6 more — is a fair guide to whether it matches your workflow. It is maintained by Daloopa rather than a third party, which usually means auth handling and breaking changes are dealt with faster.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Daloopa.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

What you can do with it

Build a peer comparison without hand-copying numbers

Ask the assistant to resolve a set of tickers, pull the same margin and growth series for each, and lay them side by side. Every cell traces back to a filing, so the output is reviewable rather than merely plausible.

Track how management guidance moved

Search transcripts and 8-Ks for guidance language across several quarters, then pair the qualitative shift with the reported fundamentals for the same periods.

Draft a tearsheet with a repeatable method

Retrieve a Daloopa skill definition first so the model follows a fixed workflow, then let it populate the template from the fundamentals and price tools.

Available tools

ToolWhat it does
discover_companiesResolve a ticker or company name to Daloopa's ticker, corporate name and internal company ID.
discover_company_seriesList the financial metrics and data series Daloopa tracks for a given company.
discover_company_documentsEnumerate indexed documents for a company — 10-K, 10-Q, 8-K, transcripts and investor presentations.
get_company_fundamentalsReturn income statement, balance sheet and cash flow values for the requested metrics and periods.
get_document_contentFetch the full text of an indexed document, with section-level access so large filings stay manageable.
search_documentsKeyword search across filings and transcripts for qualitative detail on guidance, strategy and risk.
get_stock_pricesRetrieve daily OHLCV price history for valuation multiples and price-based analysis.
list_skillsList Daloopa's structured analysis workflows with their slugs, titles and required inputs.
get_skillFetch the full step-by-step instructions for a named investing skill such as a DCF or comps build.

How to install the Daloopa MCP server

claude mcp add --transport http --scope user daloopa https://mcp.daloopa.com/server/mcp
claude mcp login daloopa

Configuration

A Daloopa account with MCP access. Authentication is OAuth by default; headless clients can send an Authorization: Bearer or x-api-key header instead.

VariableDescriptionRequired
DALOOPA_MCP_TOKENOptional bearer token used instead of the interactive OAuth flow. Pass it as an Authorization header in headless or server-side setups.e.g. dlp_live_xxxxxxxxxxxxxxxxOptional

Example prompts to try

  • Find Daloopa's company ID for NVDA and list which KPI series are available for it.
  • Pull quarterly revenue and gross margin for AMD and INTC for the last eight quarters and compare the trend.
  • Search Shopify's recent filings and transcripts for anything management said about take rate.
  • Get the last two years of daily prices for COST and compute the current EV/EBITDA using Daloopa fundamentals.

Frequently asked questions

No. It is a remote server hosted at https://mcp.daloopa.com/server/mcp and speaks Streamable HTTP, so you register the URL with your client and nothing runs on your machine. In Claude Code that is a single `claude mcp add --transport http` command; in Claude Desktop or Cursor it is a two-line entry in the MCP config file.