Developers & AI agents

Use TickerFacts fundamentals from your code or your AI agent. Free, sourced from SEC EDGAR, no API key required.

MCP server — for AI agents

TickerFacts speaks the Model Context Protocol, so an agent can call it as a tool. Point your MCP client at this endpoint:

https://tickerfacts.com/mcp

Transport: Streamable HTTP · No authentication (public data).

Claude Code

claude mcp add --transport http tickerfacts https://tickerfacts.com/mcp

Claude Desktop, Cursor, and other MCP clients

Add to your MCP config (e.g. claude_desktop_config.json or .cursor/mcp.json):

{
  "mcpServers": {
    "tickerfacts": { "url": "https://tickerfacts.com/mcp" }
  }
}

For a client that only supports local (stdio) servers, bridge with mcp-remote:

{
  "mcpServers": {
    "tickerfacts": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://tickerfacts.com/mcp"]
    }
  }
}

Available tools

More tools coming: company screening and per-metric history.

JSON API — for code

The same data as JSON, no key required:

GET https://tickerfacts.com/api/v1/companies/AAPL

Notes