datavidence-financials
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FL_API_KEY | Yes | Your API key. `sandbox_demo_key` = no-signup trial (sample data). | |
| FL_API_TIMEOUT | No | Per-request timeout, in seconds. | 30 |
| FL_API_BASE_URL | No | Point at a marketplace gateway for metered BYOK access. | https://api.financials.datavidence.ai |
| FL_API_KEY_HEADER | No | Header to send the key in (e.g. `X-RapidAPI-Key` for the RapidAPI gateway). | X-API-Key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_financialsA | Retrieve normalized US-GAAP financial statements (income statement, balance sheet, cash flow) for one company and fiscal year, from SEC EDGAR XBRL. Identify the company by |
| list_filingsA | List a company's recent SEC filings (newest first) from the EDGAR submissions index — a lean company header plus filing rows. Identify the company by |
| get_financials_batchA | Retrieve normalized US-GAAP financials for MANY companies in one call — use this to compare peers or scan a set for a single fiscal year. Pass companies as comma-separated |
| get_usageA | Report the calling API key's current monthly quota: tier, monthly limit, requests used and remaining this billing month, and when it resets. Free to call — it does NOT consume quota. Check it before a large batch or a long run so you can pace requests and avoid a hard rate-limit (429). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
get_financials and get_financials_batch are related but clearly separated by single-company vs multi-company use; list_filings and get_usage serve distinct purposes. The only potential confusion is batch vs single financials, but the descriptions make the intended use explicit.
Three tools follow a consistent get_* pattern, while list_filings uses list_ instead of get_. This is a minor deviation, but the naming remains predictable and readable overall.
Four tools is well-scoped for a financial data server: usage monitoring, single-company financials, batch financials, and filing discovery each serve a necessary and distinct role. No tool feels redundant or missing as a core primitive.
The tool set covers the main workflow of discovering filings and retrieving normalized financial statements, plus a batch variant and quota monitoring. Minor gaps exist, such as no explicit company search or multi-year time-series retrieval, but these are workarounds rather than dead ends.