Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Ivory Finance exposes a Model Context Protocol (MCP) server at:
https://docs.ivory.finance/mcp
This allows Claude — and any MCP-compatible AI client — to call Ivory Finance API endpoints directly as tools, without custom integration code.

What is MCP?

The Model Context Protocol is an open standard that lets AI assistants connect to external data sources and APIs. Mintlify automatically generates an MCP server from your OpenAPI spec, making every endpoint available as a callable tool.

Connect with Claude Code

Add the Ivory Finance MCP server to your Claude Code session by creating or editing .mcp.json in your project root:
{
  "mcpServers": {
    "ivory-finance": {
      "type": "http",
      "url": "https://docs.ivory.finance/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Replace YOUR_API_KEY with your key from the Dashboard.

Connect with Claude Desktop

In your claude_desktop_config.json:
{
  "mcpServers": {
    "ivory-finance": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://docs.ivory.finance/mcp",
        "--header",
        "X-API-Key: YOUR_API_KEY"
      ]
    }
  }
}

Available Tools

Once connected, Claude can call all Ivory Finance endpoints as tools, including:
ToolDescription
GET /v1/companies/{cik}Fetch company facts by CIK
GET /v1/financials/{cik}/ratiosPre-computed financial ratios
GET /v1/financials/{cik}/revenue-segmentsRevenue segment breakdown
POST /v1/rag/answer/agentAgentic RAG with tool calling
GET /v1/export/financials/{cik}Download financials as Excel
POST /v1/export/compsDownload comps table as Excel
POST /v1/share/emailShare analysis via email

Example Prompts

Once connected, try asking Claude:
  • “Pull Apple’s latest financial ratios from Ivory Finance”
  • “Get me a comps table for Microsoft and export it to Excel”
  • “Search for NVIDIA’s most recent 10-K risk factors”
  • “Share this analysis to my team via email using channel ID 3”

Get an API Key

Get your free API key →