
SECfinAPI
from michalperni11-gif
SEC filings hold every US public company's financials β but they're in XBRL, which is painful to parse. I built **SECfinAPI** to standardize them into clean JSON, and an **MCP server** so AI assistants can use them directly.
secfinapi-mcp
MCP server for SECfinAPI β standardized SEC EDGAR financial data (income statements, balance sheets, cash flow, 40+ ratios) as tools for Claude, Cursor, and other AI assistants.
Ask your AI assistant things like "What's Apple's revenue trend?" or "Compare MSFT and GOOGL operating margins" β it fetches the data live through SECfinAPI.
It runs locally on your machine and is a thin wrapper over the SECfinAPI REST API. No server to host, no extra cost.
Tools
| Tool | Returns |
|---|---|
get_company_info | Company metadata + a link to its filings on SEC EDGAR |
get_income_statement | Standardized income statement (with filing dates) |
get_balance_sheet | Standardized balance sheet |
get_cash_flow | Standardized cash flow statement |
get_metrics | 40+ financial ratios (ROE, ROIC, margins, growthβ¦) |
list_companies | List / search the available US public companies |
Environment variables
| Variable | Required | Default |
|---|---|---|
SECFINAPI_KEY | yes | β |
SECFINAPI_BASE_URL | no | the SECfinAPI production API |
Run from source
npm install
npm run build
SECFINAPI_KEY=your-key node dist/index.jsPublishing (maintainer)
npm run build
npm publishLicense
MIT
npm install
npm run build
SECFINAPI_KEY=your-key node dist/index.jsBefore it works, you'll need: SECFINAPI_KEY
Setup
- Get an API key (free) at https://www.secfinapi.com.
- Add the server to your AI assistant's MCP config.
Claude Desktop
Open Settings β Developer β Edit Config and add:
Once published to npm:
{
"mcpServers": {
"secfinapi": {
"command": "npx",
"args": ["-y", "secfinapi-mcp"],
"env": { "SECFINAPI_KEY": "your-api-key-here" }
}
}
}Running from source (before publishing):
{
"mcpServers": {
"secfinapi": {
"command": "node",
"args": ["C:/path/to/sec-financial-mcp/dist/index.js"],
"env": { "SECFINAPI_KEY": "your-api-key-here" }
}
}
}Restart Claude Desktop. The 6 tools below appear under the tools (π) menu.
Cursor / VS Code
Same config shape in the editor's MCP settings β command, args, and the
SECFINAPI_KEY env var.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.