corp-finance-core 1.1.0

Institutional-grade corporate finance calculations with 128-bit decimal precision — DCF, WACC, comps, LBO, credit metrics, derivatives, fixed income, options, and 60+ specialty modules. No f64 in financials. WASM-compatible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! MCP-server tier registry for CFA agents.
//!
//! Mirrors the cookbook-tier pattern in `crate::managed_agent` but for the
//! upstream MCP servers themselves. Lets a free user discover which MCP
//! servers they can use without paying for a vendor subscription:
//!
//! - `FreeNative`             — runs offline (cfa-core)
//! - `FreePublicWithApiKey`   — free public data, some sources need a free API key
//! - `Freemium`               — vendor offers a free tier (FMP)
//! - `PaidVendor`             — requires a paid vendor subscription
//!
//! Pure data + a single pure list function. No I/O.

pub mod list;
pub mod types;