Developers & AI agents
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/mcpClaude Code
claude mcp add --transport http tickerfacts https://tickerfacts.com/mcpClaude 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
get_fundamentals(ticker)— SEC-derived annual fundamentals (revenue, net income, assets, margins; plus valuation when a price is available) for a US public company. Example argument:{ "ticker": "AAPL" }.
JSON API — for code
The same data as JSON, no key required:
GET https://tickerfacts.com/api/v1/companies/AAPLNotes
- Data is derived from public SEC EDGAR filings.
- Fundamentals only — no market prices.
- For information only. Not investment advice; verify against the primary filings.