Skip to main content
Sacra’s MCP server lets AI agents call Sacra tools directly inside a conversation. This guide walks through connecting to the server, understanding the available tools, and seeing how an agent chains them together to answer a real question like “What’s Kraken’s latest revenue?”

Connect to Sacra MCP

There are three ways to connect. Pick whichever fits your setup — the tools and data are the same regardless of client.

Claude

  1. Open the official Sacra connector in the Claude directory and click Connect.
  2. Sign in to Sacra and accept permissions.

ChatGPT

  1. Open the official Sacra app in ChatGPT and add it to your account.
  2. Sign in to Sacra and click Allow.

Server-side (any agent SDK)

Connect from your own backend with a Sacra API key. This example uses the OpenAI Agents SDK, but any SDK that supports Streamable HTTP MCP works.
Create an API key in your Organization Settings. See the server-side MCP page for a full working example.
Never expose your API key in client-side code. For server-side integrations, store it in a secure environment variable or secret manager.

Available tools

The MCP server exposes eight tools:
Most workflows start with search or get_all_company_domains to find the right entity, then drill in with get_company_profile, get_revenue_signals, or get_funding_rounds_for_company depending on what you need.

Walkthrough: “What’s Kraken’s latest revenue?”

Here’s what happens when you ask this question in Claude, ChatGPT, or through a programmatic agent. The tool chain is the same regardless of client — only the UI around it differs.

Step 1: The agent resolves the company

The agent needs to find Kraken in Sacra’s database. It calls get_company_profile:
This returns the full company object including financials, company_datasets, documents, and metadata. The financials array contains headline numbers:
For a simple “latest revenue” question, the agent can answer directly from financials: $2.2B as of year-end 2025.

Step 2 (optional): The agent gets more detail

If you ask a follow-up like “How has that changed over time?” or if the agent wants to provide more context, it already has the company_datasets array from the same profile response. The revenue dataset gives the full time series:
The agent can now plot the change from 1.01Bin2022to1.01B in 2022 to 2.2B in 2025.
Kraken revenue time series from 2022 to 2025

Step 3 (optional): The agent gets citation-backed metrics

If you want sourced data, the agent calls get_revenue_signals:
This returns granular metric observations with citations — URLs and quotes backing each revenue figure. The agent can include these in its response so you know exactly where each number comes from.
The agent decides which tools to call based on your question. A simple “What’s the revenue?” may only need get_company_profile. Asking “What’s the sourced revenue with citations?” will trigger get_revenue_signals as well.

Walkthrough: “Write me a brief on Kraken”

A broader question like this triggers a multi-tool chain. Here’s a typical sequence:

1. Company profile

The agent gets the full profile: description, founding year, key people, headquarters, financials, datasets, categories, and a list of Sacra documents about Kraken.

2. Funding rounds

Returns each round with dates, amounts raised, valuations, and round types — Seed in 2013, Series A in 2014, through to the Series C and Growth rounds in 2025.

3. Recent news

Returns recent news items so the brief includes current developments.

4. Deep-dive into a document

The company profile includes a documents array. If the agent spots a relevant report — say “Kraken at $1.5B up 128% YoY” — it can pull the full text:
This gives the agent detailed analysis to draw from when writing the brief.

The result

The agent composes all four tool responses into a structured brief: business overview, key people, funding history, revenue trajectory, recent developments, and an investor takeaway — all grounded in Sacra data.

Tips for effective prompting

Activating the connector

In ChatGPT, say “Use Sacra” to ensure ChatGPT routes your question through the Sacra connector. In Claude, the connector activates automatically when your question matches the tool descriptions, but you can say “Use the Sacra MCP” to be explicit.

Be specific about what you want

The more specific your question, the more targeted the tool chain:

Chain follow-up questions

After an initial question, the agent retains context. You can follow up naturally:
  • “Now compare that to Coinbase”
  • “What funding rounds led to that valuation?”
  • “Pull the full report on their revenue growth”
Each follow-up triggers additional tool calls without needing to re-fetch earlier data.

Ask for sources

If you want to know where a number comes from, ask explicitly: “What’s Kraken’s revenue and where does that number come from?” This prompts the agent to call get_revenue_signals for citation-backed data.

Next steps