Blog / Earnings Call Data over MCP or REST: Picking the Right Inter…
API & developer guidesAI & LLM workflows

Earnings Call Data over MCP or REST: Picking the Right Interface

Jun 18, 2026 · Lukas Hoffmann

Programmatic access to earnings call transcripts now comes in two distinct flavors. You can plug an MCP server straight into an AI client such as Claude or Cursor, or you can hit a conventional REST API from your own code. Behind both interfaces sits the same corpus, so the real question is not which technology wins in general - it is which one matches the task on your desk right now.

This article walks through that decision concretely: the jobs each interface does well, where the boundary sits, and how to decide for your specific workflow. On earningsapi.io, one account covers both, so choosing one today does not lock you out of the other tomorrow.

The short version

If you only read two bullets, read these:

Still on the fence? The sections below should settle it for your case.

Where the MCP connector shines

The MCP server at mcp.earningsapi.io puts the transcript dataset directly inside your AI assistant, with nothing in between. From the dashboard you generate a personal connector URL, paste it into your client, and the model immediately has a toolbox it can call on its own initiative. The setup guide covers each client.

What it is genuinely good at:

The cost is determinism. The model decides how to query, so output is shaped by its reasoning rather than a fixed contract. For exploration that flexibility is the feature; for a downstream system that must parse identical output every run, it is the bug.

Where the REST API shines

The REST API is the deterministic path. It lives at https://earningsapi.io/api/v1, authenticates via an X-API-Key header, and ships a full OpenAPI spec so you can generate typed clients in whatever language your stack speaks. The docs cover every endpoint.

What it is genuinely good at:

The cost is that you write and own the integration code. No model interprets anything for you - which is precisely what you want when reliability outranks convenience.

Side by side

MCP connector REST API
Setup Generate a URL in the dashboard, paste it into your client Grab an API key, code against the OpenAPI spec
Auth Token embedded in the connector URL X-API-Key header on each request
Best fit Conversational research, AI agents Apps, pipelines, deterministic automation
Control Model chooses the queries You choose every parameter and retry
Runs in Claude Desktop, claude.ai, Claude Code, Cursor Any HTTP-capable language or backend
Latency model Tool-call round trips through the AI client Direct request/response; caching and polling are yours

Both doors open onto the identical dataset: 250,945 earnings calls, 11.9M speaker segments, and 12,728 companies spanning all 11 GICS sectors, with history back to 2020. How you connect changes nothing about what you can reach.

Using both at once

Not only can you - most teams that get serious about transcript data end up doing exactly this. The connector and the API are two entry points into one account with one key. There is no second subscription and no coverage gap between them.

A typical split: analysts keep the MCP connector wired into Claude for day-to-day exploration, while engineering runs the REST API on a schedule to feed a warehouse and an internal dashboard. Both draw from the same corpus and count against the same plan limits, so usage can shift freely between conversational and programmatic access without any reprovisioning. Plans - Basic at $105, Pro at $145, and Ultra at $515 per quarter - are compared on the pricing page.

Recommendations by scenario

Analyst living in Claude. Take the connector. Generate it in the dashboard, paste the https://earningsapi.io/u/mct_xxx/mcp URL into your client, and start asking questions against the full corpus. The /mcp guide has per-client instructions.

Developer shipping a product feature. Take the REST API. Structured JSON, explicit search and transcript endpoints, and a generated client mean your UI never breaks on an unexpected response shape.

ETL and data pipelines. REST API with cursor-based polling, full stop. Pipelines demand idempotency, and MCP is the wrong instrument here. Poll for new calls incrementally, load them into the warehouse, run on a schedule.

Mixed teams. Both. Connector for the researchers, API for the engineers - one account, one bill, one dataset.

The takeaway

The MCP-versus-REST question reduces to: who is doing the work? A person or agent reasoning in natural language wants the connector. Code that must produce identical results every run wants the API. Since a single earningsapi.io account carries both, start with whichever fits today and add the other when your needs grow.

Related reading

250,000 earnings calls via API

Full transcripts, speaker segments, full-text search. Quarterly plans from $145.

Get an API key
← PreviousAn Autonomous Earnings Research Agent with Claude and MCP