MCP Server

The Termina MCP server lets AI clients that speak the Model Context Protocol — such as Claude Desktop, Cursor, and ChatGPT — query your Termina data in natural language. The model calls a curated set of read-only tools (deals, financials, benchmarks, product, talent, unit economics, and macro signals) that run against the Termina API with your permissions.

Endpoint

The server is hosted over Streamable HTTP at:

https://app.termina.ai/mcp

Authentication uses the same credentials as the REST API. Send your API key (or a JWT) in the Authorization header as a Bearer token; the server exchanges an API key for a short-lived JWT automatically. All tool calls are scoped to your role-based permissions — the MCP server can never read data your account cannot.

Connecting a client

Most clients accept a remote MCP server URL plus an authorization header. For example, a Claude Desktop / Cursor mcp.json entry:

1{
2 "mcpServers": {
3 "termina": {
4 "url": "https://app.termina.ai/mcp",
5 "headers": {
6 "Authorization": "Bearer YOUR_API_KEY"
7 }
8 }
9 }
10}

Generate an API key from your user profile page. See Authentication for details on tokens and roles.

Available tools

The server exposes a focused, read-only catalog designed for analysis workflows:

AreaTools
Discoverysearch_deals, get_deal, list_companies, get_diligence_metadata
Financialsget_income_statement, get_balance_sheet, get_derived_metrics
Benchmarksget_available_categories, get_benchmark_metrics, get_tradeoff_at_scale
Product / Talent / Unit economicsget_growth_accounting, get_cohorts, get_contribution, get_executive_profiles
Deal documentget_deal_document, describe_visualizations
Macrolist_market_segmentations, get_market_gauges, get_market_context

A typical session starts with search_deals or get_diligence_metadata to find a group_id and deal_id, then drills into financials and benchmarks.

Example prompts

  • “Find the Acme deal and summarize its revenue growth and gross margin versus benchmark peers.”
  • “Compare growth accounting for our two most recent fintech deals.”
  • “What did the analyst flag in the Acme write-up, and which charts did they annotate?”
  • “What does the macro weather look like for the SaaS sector right now?”

If you have suggestions for additional tools, contact us at dev-support@termina.ai.