Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Vintage
V
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:12:03 AM

Vintage

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Point-in-time financial data, and a backtester that deflates your Sharpe by how often you asked.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "vintage": {
      "command": "npx",
      "args": [
        "-y",
        "vintage"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

Vintage β€” point-in-time research terminal

Free financial data exists and is scattered across twenty APIs with twenty shapes. Everyone rebuilds the same glue, badly, and quietly ends up backtesting on restated figures and survivor biased universes.

Vintage is that glue, written once, served over MCP. It hosts no data. It connects, normalizes, and serves structured financial data from the web.

A research terminal that costs $0 and won't lie to you about your Sharpe.

PyPI CI License Python

Twenty-two free financial data sources β€” SEC EDGAR, Form 13F, House and Senate STOCK Act disclosures, FRED, ECB, US Treasury, BLS, BEA, CFTC, CBOE, FINRA, Coinbase, Ken French and more β€” federated behind one interface, with every row carrying both the date it describes and the date it became public

A Claude session: install Vintage, backtest three signals, watch the deflated Sharpe collapse to 0.09

rezasoleymanifar.github.io/vintage

What people use it for

Two questions answered: whether Apple restated its 2019 revenue, and a Sharpe of 2.14 collapsing to 0.09 once 41 trials are counted

Two of four scenes β€” see the full reel on the site.

Install

Claude Code

Terminal
claude mcp add vintage -s user -- uvx vintage-mcp

Claude Desktop / any MCP client β€” add to your config file:

config.json
{
  "mcpServers": {
    "vintage": {
      "command": "uvx",
      "args": ["vintage-mcp"]
    }
  }
}

Claude Desktop config lives at %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS). Restart the app afterwards. MCP servers load once at startup.

Needs uv. If you'd rather use pip: pip install vintage-mcp and set the command to vintage.

Optional configuration

Everything works with zero configuration. These make it work better:

VariableWhy
VINTAGE_USER_AGENTSEC EDGAR asks for a real contact. "Your Name your@email.com".
FRED_API_KEYFree key β€” unlocks 800k macro series with first-release vintages.
VINTAGE_CACHE_DIRDefaults to ~/.cache/vintage.

Set them under "env" in the same config block:

config.json
{
  "mcpServers": {
    "vintage": {
      "command": "uvx",
      "args": ["vintage-mcp"],
      "env": {
        "VINTAGE_USER_AGENT": "Jane Quant jane@example.com",
        "FRED_API_KEY": "..."
      }
    }
  }
}

Your key stays in this file. It is read by the server process and is never passed through the model or written into the conversation.

Use it as a library

The same data, without the server. Everything is synchronous and returns pandas, including inside Jupyter where a loop is already running.

server.ts
import vintage as v

v.prices("AAPL", start="2020-01-01")          # daily prices, with known_at
v.panel(["AAPL", "MSFT", "JNJ"])              # dates x tickers
v.fundamentals("AAPL", "us-gaap:Assets", as_of="2020-01-01")
v.restatements("AAPL", "us-gaap:Assets")      # periods reported twice, differently
v.factors("ff3")                              # Ken French, wide
v.macro("DGS10", as_of="2008-09-15")          # ALFRED first-release vintage
v.claim("Mom12m")                             # what the paper claimed
v.claims(price_only=True)                     # the 56 replicable with free data
v.crypto("BTC-USD")
v.short_volume("AAPL")
v.sentiment("wallstreetbets")

known_at is kept as a column on every frame rather than dropped for tidiness β€” losing it is how a point-in-time dataset quietly becomes an ordinary one. Pass as_of and rows published after that date are gone before you see them.

Try it

Once installed, ask your assistant:

"What was Apple's total assets as of January 2020 β€” and has it been restated since?"

"Backtest 12-1 momentum on the Dow 30 since 2010."

"Now try short-term reversal instead. Did the alpha survive?"

The third question is the one that matters. Every answer carries the worst held-out path next to the headline Sharpe.

The two dates

Every value carries both:

  • observed_at β€” what period the number describes
  • known_at β€” when it first became public

A backtest may only use rows whose known_at precedes the trade date. That is structural, not a setting: the panel is indexed on known_at, so any slice of it is automatically point-in-time. There is no flag to turn it off.

Sources that cannot supply an honest known_at are flagged UNKNOWN_VINTAGE rather than given a fabricated date.

Six ways yesterday's data quietly changed

  • Lag β€” the number is true in December, published in February.
  • Restatement β€” the company says "oops, wrong" and changes last year's figure.
  • Revision β€” the government keeps fixing old jobs and inflation numbers, for years.
  • Survivorship β€” dead companies get deleted; only the winners are still listed.
  • Membership β€” today's S&P 500 list is not the list from 2005.
  • Price adjustment β€” splits and dividends silently rewrite every price before them.

All six say the same thing: the data you have today is not what people saw back then.

Six verbs

Source is a parameter, never a separate tool. Twenty more sources adds zero tools.

VerbDoes
resolveAny identifier β†’ the entity key everything else accepts
discoverPlain-English search across every source's catalog
fetchThe workhorse. Any field, any source, with as_of
eventsFiling timeline with exact public timestamps
backtestCross-sectional signal β†’ returns, costs, held-out paths
benchmarkYour returns β†’ correlation and alpha vs published factors

Plus status for cache size, keys, and how many specs you have tried.

Backtesting methodology

  • Deflated Sharpe (Bailey & LΓ³pez de Prado, 2014) accounting for every spec tried this session
  • Costs always charged on turnover. There is no zero-cost mode
  • A standing survivorship warning, because the universe is a list of names that exist today

Vintage implements the backtest-validation literature rather than inventing its own statistics. Execution realism is a different problem, already solved by LEAN and Nautilus Trader β€” Vintage runs before that, at the stage where most ideas should die.

TechniqueSourceStatus
Point-in-time panel indexed on known_atstructural, no flag to disableβœ… shipped
Costs charged on turnover, alwaysno zero-cost mode existsβœ… shipped
Deflated Sharpe RatioBailey & LΓ³pez de Prado (2014)βœ… shipped
Session trial ledger feeding the deflationBailey & LΓ³pez de Prado (2014)βœ… shipped
Probability of Backtest Overfitting, via CSCVBailey, Borwein, López de Prado & Zhu (2017)⏳ planned
Purged k-fold CV with embargoAdvances in Financial Machine Learning, ch. 7⏳ planned
Combinatorial purged cross-validationAdvances in Financial Machine Learning, ch. 12⏳ planned
Minimum Backtest LengthBailey, Borwein, López de Prado & Zhu (2014)⏳ planned
Newey–West adjustment for autocorrelated returnsNewey & West (1987)⏳ planned
Square-root market impactAlmgren et al. (2005)⏳ planned

Citations are references, not endorsements β€” none of these authors is affiliated with Vintage. Anything marked planned is not in the code yet, and the backtest response says so at runtime rather than in the footnotes.

Where the data comes from

100
years, July 1926 to this morning
331
published anomalies, with claims
18
sources, six verbs
10,398
ticker-mapped US filers
800k+
macro series with vintages

A century of market history, twenty-two sources, and twenty of them need no key at all. The Fama-French factors start in July 1926 and the SEC filing stream runs to this morning β€” Vintage covers both ends from the same six verbs.

Most of these are the primary source β€” not a reseller, not a scraper. The filings come from the regulator that receives them, the macro series from the central bank that publishes them, and the factors from the university that computes them.

@remove all emojis and just print list of soruceswith icons for them.

SourceStandingCoversKeyPoint-in-time
SEC EDGAR XBRLPrimary Β· US regulatorEvery concept every US filer has tagged, with accession number and filing date on each figure. Restatements arrive as rows, never as an overwrite.noneβœ… native filing dates
SEC filings streamPrimary Β· US regulator8-K, 10-K, 10-Q, Form 4, 13D/G β€” timestamped to the second EDGAR accepted them.noneβœ… exact timestamps
FRED / ALFREDPrimary Β· central bankFederal Reserve Bank of St. Louis. ALFRED keeps first releases, so you can ask what CPI looked like that morning.freeβœ… first-release vintages
Ken French Data LibraryPrimary Β· academicDartmouth. FF3, FF5, momentum, daily FF3, 49 industry portfolios β€” from where the authors publish them.none❌ rebuilt each release
Open Source Asset PricingPrimary Β· academicChen & Zimmermann. 331 published predictors with claimed return, t-stat, sample window and an implementable definition. openap:Mom12m returns Jegadeesh-Titman's 1.31%/mo, t=3.74.noneβœ… claims dated to publication year
SEC Form 13FPrimary Β· US regulatorInstitutional equity holdings for every manager over $100m. Quarter end and filing date are up to 45 days apart and both are kept, so as_of returns the book that was actually public.noneβœ… quarter end vs filing date
SEC Form 25Primary Β· US regulatorEvery delisting on record β€” 36,830 filings across 11,614 companies. The correction for a universe built from names that still exist.noneβœ… filing dates, never revised
SEC XBRL framesPrimary Β· US regulatorOne concept across every filer in a single call. 6,289 companies in 840 KB β€” the shape a cross-sectional sort needs.none❌ carries the accession, not its date
US TreasuryPrimary Β· US governmentThe par yield curve, 14 tenors from one month to thirty years, published each business day.noneβœ… never revised
CFTCPrimary Β· US regulatorCommitments of Traders. Tuesday's positioning by trader class, released the following Friday, and the lag is preserved.noneβœ… lag preserved in known_at
Bureau of Labor StatisticsPrimary · US agencyCPI down to item strata, payrolls, JOLTS, wages, productivity. Any series id, not a curated shortlist.optional❌ ships no release date
Bureau of Economic AnalysisPrimary · US agencyThe national accounts. One call returns every line of a NIPA table rather than one series at a time.free❌ current estimate only
European Central BankPrimary Β· central bankDaily FX reference rates since 1999, plus any cross derived from two euro legs and labelled as derived.noneβœ… published once, never revised
CBOEPrimary Β· exchangeVIX and the whole volatility family β€” term structure, VVIX, SKEW β€” back to 1990.noneβœ… index levels are not revised
FINRAPrimary Β· US regulatorDaily short sale volume per symbol, published after each close and never revised. Short volume, not short interest.noneβœ… never revised
Coinbase ExchangeExchangeCrypto OHLCV, every listed pair.noneβœ… trade prints are never restated
ApeWisdomCommunityForum mention ranks across ~15 subreddits. No history upstream β€” rows are stamped when Vintage fetched them.none⏩ forward only, from the day you record
Yahoo FinanceThird partyDaily OHLCV and adjusted close, decades deep.none⚠️ adjusted retroactively, flagged on every row

COVERAGE.md is the full field-by-field catalogue β€” every prefix, every dataset, every signal, with measured coverage spans. It is generated from the registry, so it cannot drift from the code.

Counts current as of August 2026. Vintage redistributes none of this β€” each upstream source keeps its own terms.

Cache

Gzipped JSON in ~/.cache/vintage, tiered by how mutable the data is: closed periods never refetch, academic datasets monthly, current fundamentals daily, prices per session. An hour of conversation is roughly 20 upstream calls.

Known gaps

Stated plainly, because the alternative is shipping a bad substitute:

Data:

  • Survivorship β€” universes are current-listing only. Form 25 delistings are the next build and the backtester warns until then.
  • Analyst estimates β€” no free source exists.
  • Historical options chains β€” paid everywhere.
  • Point-in-time index membership β€” licensed by S&P and MSCI.

Engine β€” the backtester is vectorized and cross-sectional, which is a rung below an event-driven simulator:

  • No purging or embargo β€” overlapping label windows can leak across a train/test split (LΓ³pez de Prado, AFML ch. 7). Deflation catches selection bias, not leakage.
  • No market impact β€” costs are a flat charge on turnover, so large-notional results are optimistic.
  • No PBO β€” deflated Sharpe covers multiple testing; the Probability of Backtest Overfitting via combinatorially symmetric cross-validation would be the stronger test.
  • Trial count is session-scoped and resettable β€” reset_trials=True zeroes it mid-conversation. Deliberate: the correction only applies to repeated attempts at one question, and the engine cannot tell those from unrelated ones.
  • Sharpe is per observation, not annualized β€” that is the frequency the deflation is defined at, and the response says so.

Development

bash
git clone https://github.com/RezaSoleymanifar/vintage
cd vintage
uv sync --group dev
uv run pytest

smoke_test.py exercises all six verbs against the live sources β€” useful before a release, and it needs network.

License

MIT. Vintage redistributes no data; each upstream source keeps its own terms.

mcp-name: io.github.RezaSoleymanifar/vintage

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • M
    Mcp Server

    34 stock valuation, financial data, and portfolio management tools for AI agents.

    πŸ’° Finance & Fintech0 views
    Compare vs Mcp Server β†’
  • U
    Unquant

    Financial data MCP for market, company, news, macro, and US Congress research.

    πŸ’° Finance & Fintech0 views
    Compare vs Unquant β†’
  • D
    Drillr β€” The financial MCP for AI agents

    The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.

    πŸ’° Finance & Fintech0 views
    Compare vs Drillr β€” The financial MCP for AI agents β†’
  • K
    Keithah Tessie Mcp

    Unofficial integration! ## ✨ Key Features ### πŸ’° Financial Intelligence - **Smart Charging Cost An…

    πŸ’° Finance & Fintech0 views
    Compare vs Keithah Tessie Mcp β†’

Frequently Asked Questions about Vintage

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "vintage": { "command": "npx", "args": ["-y", "Vintage"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewVintage AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/vintage?style=directory)](https://allmcps.com/mcp/vintage)
HTML Embed
<a href="https://allmcps.com/mcp/vintage"><img src="https://allmcps.com/api/badge/vintage?style=directory" alt="Vintage on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Vintage β†’Install in Claude DesktopInstall in CursorInstall in VS Code