Real Queries. Live Data.

Fintel Discovery in Action

Every example below was run against the live MCP endpoint at ai.fin-discovery.com/mcp — real FINRA, SEC, and market data, no mocks.

01
Geographic Advisor Discovery
Find wealth advisors and financial firms near a location
Live OpenStreetMap
User Prompt
"Show me wealth advisors and financial firms near San Francisco, CA"
Tools Called
SearchBrokersByPlace
Workflow
1
SearchBrokersByPlace
2
SearchBrokerCheckFirm
3
GetBrokerCheckDetail
Parameters
{
  "place": "San Francisco, CA",
  "category": "financial",
  "radius_km": 10
}
Results — Wealth & Advisory Firms Found
Morgan Stanley
Full-Service Wealth Management
📍 555 California St, San Francisco, CA 94104
📞 +1 415-576-2000 Active 3,826 branches
Charles Schwab
Financial Advisor
📍 Financial District, San Francisco, CA
Active
SVB Private
Silicon Valley Bank — Private Banking
📍 255 Battery Street, San Francisco
📞 +1 415-402-5900
Mosher Financial
Independent Financial Advisory
📍 256A Laguna Honda Blvd, San Francisco, CA 94116
+ 60 more results within 10 km radius
02
Advisor Due Diligence — FINRA BrokerCheck
Full regulatory profile for a named financial advisor
Live FINRA BrokerCheck
User Prompt
"Research advisor Anthony Feeney from Edward Jones — check his credentials and registration history"
Tools Called
SearchBrokerCheck GetBrokerCheckDetail
Raw Query
// Step 1 — Find CRD by name
SearchBrokerCheck({
  "name": "Anthony Feeney"
})

// Step 2 — Pull full profile
GetBrokerCheckDetail({
  "crd": "6753609"
})
Full BrokerCheck Profile
AF
Anthony James Feeney
Edward Jones · Rohnert Park, CA
Active BD Active IA No Disclosures
CRD Number6753609
FirmEDWARD JONES
Office6085 State Farm Dr, Suite 105
Rohnert Park, CA 94928
BD RegistrationMar 28, 2017
IA RegistrationAug 4, 2017
Industry SinceMarch 2017
Exams PassedSeries 7 · SIE · Series 66
SRO RegistrationsFINRA · NYSE · NYSE American · Nasdaq
DisclosuresNone on record
Licensed States (16)
AKAZ ARCA FLID MIMO MTNV ORSC TNTX VAWA
03
Institutional Holdings — SEC EDGAR 13F
Morgan Stanley Q4 2025 portfolio positions from public 13F filing
Live SEC EDGAR
User Prompt
"What are the invested products and holdings of Morgan Stanley? Show me their latest 13F filing."
Tools Called
SearchEdgar13F Get13FHoldings
Filing Retrieved
FilerMORGAN STANLEY
CIK0000895421
PeriodQ4 2025 (Dec 31, 2025)
FiledFebruary 13, 2026
Form13F-HR
Accession0000895421-26-000080
Total Positions2,000+
TickersMS, MS-PA, MS-PE, MS-PF …
Sample Holdings — Asset Class Diversity
Issuer Class / Type Category
APPLE INCCOMLarge Cap
MICROSOFT CORPCOMLarge Cap
NVIDIA CORPCOMLarge Cap
PROSHARES TRSHORT DOW30 ETFInverse ETF
ISHARES TRGLOBAL ENERGY ETFSector ETF
ARK ETF TR3D PRINTING ETFThematic ETF
ATLANTA BRAVES HLDGSCOM SER ASports / Alt
WINNEBAGO INDS INCCOMConsumer
EMPIRE ST RLTY TRCL AREIT
DIMENSIONAL ETF TRUSTUS SMALL CAP VALUEFactor ETF
Note: 13F filings report institutional holdings quarterly. Morgan Stanley's full Q4 2025 filing contains 2,000+ positions across equities, ETFs, options, and alternative assets — all publicly available via SEC EDGAR.
04
Market Performance Comparison
SPY vs QQQ vs IWM — 2-year normalized return (May 2024 → Apr 2026)
Live Yahoo Finance
User Prompt
"Compare SPY performance vs QQQ and IWM over the past 2 years — which one outperformed the S&P 500?"
Tool Called
GetMultiTickerHistory
Parameters
{
  "symbols": "SPY,QQQ,IWM",
  "period": "2y",
  "interval": "1mo"
}
2-Year Return
SPY — S&P 500
+27.4%
QQQ — Nasdaq 100
+31.2%
IWM — Russell 2000
+24.8%
QQQ (Nasdaq-100) outperformed SPY over this period, led by AI/tech. IWM (small-caps) lagged, hurt by rate sensitivity in 2024–2025.
SPY
QQQ
IWM
Monthly close · Normalized to 100 · Source: Yahoo Finance via GetMultiTickerHistory
05
Cheapest Commodity ETFs by Expense Ratio
SEC EDGAR prospectus filings ranked by net annual cost to investor
Live SEC EDGAR
User Prompt
"Find the cheapest commodity ETFs — rank them by expense ratio so I know which ones cost the least to hold."
Tools Called
SearchFundsByCategory GetFundFees
Workflow
1
SearchFundsByCategory
2
GetFundFees (per CIK)
3
Rank by net_expense_ratio ↑
Step 1 — Discover Universe
SearchFundsByCategory({
  "keywords": "commodity",
  "fund_type": "etf",
  "max_results": 40
})
// → 27 commodity ETF filers found
Step 2 — Pull Expense Ratios
GetFundFees({
  "cik": "1595386"  // Invesco/PDBC
})
// → net_expense_ratio: 0.59%
// Filed: 2026-02-26 (N-1A)
Data source: Expense ratios parsed directly from SEC EDGAR N-1A prospectus filings via XBRL rr:NetExpenseRatio taxonomy — the same data regulators use.
Commodity ETFs Ranked by Expense Ratio (Cheapest First)
# Ticker Fund Name Focus Expense Ratio
1 COMB GraniteShares Bloomberg Commodity Broad Broad 0.25%
2 BCD abrdn Bloomberg All Commodity K-1 Free Broad 0.30%
3 COMT iShares GSCI Commodity Dynamic Roll Broad 0.48%
4 PDBC Invesco Optimum Yield Diversified Commodity Broad 0.59% ★ SEC
5 NBCM Neuberger Berman Commodity Strategy ETF Active 0.69% ★ SEC
6 DJP iPath Bloomberg Commodity Index ETN Broad 0.70%
7 GSCI Goldman Sachs ActiveBeta Commodity ETF Active 0.77% ★ SEC
8 GSG iShares S&P GSCI Commodity-Indexed Trust Broad 0.75%
9 DBC Invesco DB Commodity Index Tracking Broad 0.85%
10 USCF USCF Commodity Strategy Fund ETF Active 0.89% ★ SEC
11 FTGC First Trust Global Tactical Commodity Strategy Active 0.95%
Visual Comparison
★ SEC = expense ratio read live from SEC EDGAR N-1A prospectus filing
06
Macro Economic Context — FRED
Federal Reserve interest rates + CPI inflation — live from the St. Louis Fed
Live FRED API
User Prompt
"What is the current Fed Funds rate and inflation (CPI)? Give me recent history so I can understand the macro environment for my advisor territory."
Tools Called
SearchFredSeries GetFredSeriesData
Workflow
1
SearchFredSeries
2
GetFredSeriesData (×2)
Parameters
// Step 1 — discover series IDs
SearchFredSeries({
  "query": "federal funds rate"
})

// Step 2a — Fed Funds Rate
GetFredSeriesData({
  "series_id": "FEDFUNDS",
  "observation_start": "2022-01-01",
  "frequency": "m"
})

// Step 2b — CPI Inflation
GetFredSeriesData({
  "series_id": "CPIAUCSL",
  "observation_start": "2022-01-01",
  "frequency": "m"
})
800,000+ series available. GDP, unemployment, yield curve, M2 money supply, housing starts — all from the Federal Reserve.
Federal Funds Rate (FEDFUNDS) — Monthly, 2022–2026
DateFed Funds RateCPI (YoY approx)Macro Signal
Jan 20220.08%7.5%Rate Liftoff
Jun 20221.58%9.1%Peak Inflation
Dec 20224.10%6.5%Hike Cycle
Jul 20235.33%3.2%Peak Rate
Dec 20244.33%2.7%Cutting Cycle
Mar 20254.33%2.4%Stabilizing
Key Series Available via GetFredSeriesData
Series IDDescriptionFrequency
FEDFUNDSFederal Funds Effective RateMonthly
DGS1010-Year Treasury YieldDaily
CPIAUCSLConsumer Price Index (CPI-U)Monthly
UNRATEUnemployment RateMonthly
GDPGross Domestic ProductQuarterly
M2SLM2 Money SupplyMonthly
T10Y2Y10Y–2Y Yield Curve SpreadDaily
Use case: Combine FRED macro data with advisor territory demographics (GetTerritoryWealthProfile) and institutional holdings (Get13FHoldings) for a complete picture of the financial landscape in any region.

Ready to Build?

Connect in 3 Lines of Config

Point any MCP-compatible AI client at ai.fin-discovery.com/mcp and start querying live financial data instantly.

View Setup Guide Technical Docs