Alpha Vantage MCP server

OfficialAlpha VantageConfig last verified Jun 1, 2026

Alpha Vantage's official MCP server gives agents real-time and historical stock, forex, crypto, and economic data.

Alpha Vantage MCP is the official server for the Alpha Vantage market-data API, giving an AI agent a wide financial dataset as tools. It covers equities (intraday through monthly time series, adjusted prices, global quotes, bulk quotes, symbol search, and market status), options chains, forex and digital-currency rates, fundamentals (company overview, income statement, balance sheet, cash flow, earnings, and calendars), commodities, macroeconomic indicators like GDP, CPI, and Treasury yields, and a very large library of technical indicators (SMA, EMA, MACD, RSI, BBANDS, and dozens more). Each tool maps directly to an Alpha Vantage API endpoint.

The canonical setup is the remote endpoint at https://mcp.alphavantage.co/mcp, where you pass your free Alpha Vantage API key as an apikey query parameter on the URL. It also runs locally over stdio via uvx using the marketdata-mcp-server package, taking the API key as an argument. A free key is enough to get started; the same key governs your rate limits and premium-endpoint access.

Quick install

Copy-paste configs are provided for all 8 supported clients. Pick your client below.

Add to ~/.claude.json

~/.claude.json
json
{
  "mcpServers": {
    "alphavantage": {
      "type": "http",
      "url": "https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY"
    }
  }
}
Or via CLI
bash
claude mcp add --transport http alphavantage https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY

Available tools

ToolDescription
TIME_SERIES_INTRADAYReturns intraday OHLCV time series for an equity at a chosen interval.
TIME_SERIES_DAILYReturns daily OHLCV time series for an equity.
TIME_SERIES_DAILY_ADJUSTEDReturns daily adjusted OHLCV time series with dividends and splits.
TIME_SERIES_WEEKLYReturns weekly OHLCV time series for an equity.
TIME_SERIES_WEEKLY_ADJUSTEDReturns weekly adjusted OHLCV time series.
TIME_SERIES_MONTHLYReturns monthly OHLCV time series for an equity.
TIME_SERIES_MONTHLY_ADJUSTEDReturns monthly adjusted OHLCV time series.
GLOBAL_QUOTEReturns the latest price and volume quote for a ticker.
REALTIME_BULK_QUOTESReturns real-time quotes for up to 100 symbols at once.
SYMBOL_SEARCHSearches for symbols and companies matching keywords.
MARKET_STATUSReturns the open or closed status of major global markets.
REALTIME_OPTIONSReturns the real-time US options chain for a ticker.
REALTIME_OPTIONS_FMVReturns real-time options data with fair-value estimates.
HISTORICAL_OPTIONSReturns historical options chain data for a ticker and date.
NEWS_SENTIMENTReturns market news and sentiment scores filtered by tickers and topics.
EARNINGS_CALL_TRANSCRIPTReturns the transcript of a company's earnings call.
TOP_GAINERS_LOSERSReturns the day's top gaining, losing, and most-active US tickers.
INSIDER_TRANSACTIONSReturns insider trading transactions for a company.
INSTITUTIONAL_HOLDINGSReturns institutional ownership holdings for a company.
ANALYTICS_FIXED_WINDOWComputes analytics metrics over a fixed time window for one or more symbols.
ANALYTICS_SLIDING_WINDOWComputes analytics metrics over a sliding time window for one or more symbols.
COMPANY_OVERVIEWReturns a company overview with key fundamentals and ratios.
INCOME_STATEMENTReturns annual and quarterly income statements for a company.
BALANCE_SHEETReturns annual and quarterly balance sheets for a company.
CASH_FLOWReturns annual and quarterly cash-flow statements for a company.
EARNINGSReturns annual and quarterly earnings (EPS) for a company.
LISTING_STATUSReturns active or delisted listing status for stocks and ETFs.
EARNINGS_CALENDARReturns expected earnings report dates for the coming months.
IPO_CALENDARReturns the list of upcoming IPOs.
FX_INTRADAYReturns intraday exchange-rate time series for a currency pair.
FX_DAILYReturns daily exchange-rate time series for a currency pair.
FX_WEEKLYReturns weekly exchange-rate time series for a currency pair.
FX_MONTHLYReturns monthly exchange-rate time series for a currency pair.
CURRENCY_EXCHANGE_RATEReturns the real-time exchange rate for any pair of physical or digital currencies.
DIGITAL_CURRENCY_INTRADAYReturns intraday time series for a digital currency.
DIGITAL_CURRENCY_DAILYReturns daily time series for a digital currency.
DIGITAL_CURRENCY_WEEKLYReturns weekly time series for a digital currency.
DIGITAL_CURRENCY_MONTHLYReturns monthly time series for a digital currency.
WTIReturns West Texas Intermediate crude oil prices.
BRENTReturns Brent crude oil prices.
NATURAL_GASReturns natural gas prices.
COPPERReturns global copper prices.
ALUMINUMReturns global aluminum prices.
WHEATReturns global wheat prices.
CORNReturns global corn prices.
COTTONReturns global cotton prices.
SUGARReturns global sugar prices.
COFFEEReturns global coffee prices.
ALL_COMMODITIESReturns a global commodities price index.
REAL_GDPReturns US real GDP data.
REAL_GDP_PER_CAPITAReturns US real GDP per capita.
TREASURY_YIELDReturns US Treasury yield for a chosen maturity.
FEDERAL_FUNDS_RATEReturns the US federal funds (interest) rate.
CPIReturns US Consumer Price Index data.
INFLATIONReturns US annual inflation rates.
RETAIL_SALESReturns US advance retail sales data.
DURABLESReturns US durable goods orders data.
UNEMPLOYMENTReturns the US unemployment rate.
NONFARM_PAYROLLReturns US total nonfarm payroll data.
SMAComputes the Simple Moving Average technical indicator.
EMAComputes the Exponential Moving Average technical indicator.
WMAComputes the Weighted Moving Average technical indicator.
DEMAComputes the Double Exponential Moving Average.
TEMAComputes the Triple Exponential Moving Average.
TRIMAComputes the Triangular Moving Average.
KAMAComputes the Kaufman Adaptive Moving Average.
MAMAComputes the MESA Adaptive Moving Average.
VWAPComputes the Volume Weighted Average Price.
T3Computes the Triple Exponential Moving Average (T3).
MACDComputes the Moving Average Convergence/Divergence indicator.
MACDEXTComputes MACD with controllable moving-average types.
STOCHComputes the Stochastic Oscillator.
STOCHFComputes the Stochastic Fast oscillator.
RSIComputes the Relative Strength Index.
STOCHRSIComputes the Stochastic Relative Strength Index.
WILLRComputes Williams' %R indicator.
ADXComputes the Average Directional Movement Index.
ADXRComputes the Average Directional Movement Index Rating.
APOComputes the Absolute Price Oscillator.
PPOComputes the Percentage Price Oscillator.
MOMComputes the Momentum indicator.
BOPComputes the Balance of Power indicator.
CCIComputes the Commodity Channel Index.
CMOComputes the Chande Momentum Oscillator.
ROCComputes the Rate of Change indicator.
ROCRComputes the Rate of Change Ratio.
AROONComputes the Aroon indicator.
AROONOSCComputes the Aroon Oscillator.
MFIComputes the Money Flow Index.
TRIXComputes the TRIX (1-day rate of change of a triple-smoothed EMA).
ULTOSCComputes the Ultimate Oscillator.
DXComputes the Directional Movement Index.
MINUS_DIComputes the Minus Directional Indicator.
PLUS_DIComputes the Plus Directional Indicator.
MINUS_DMComputes the Minus Directional Movement.
PLUS_DMComputes the Plus Directional Movement.
BBANDSComputes Bollinger Bands.
MIDPOINTComputes the MidPoint over a period.
MIDPRICEComputes the MidPrice over a period.
SARComputes the Parabolic SAR.
TRANGEComputes the True Range.
ATRComputes the Average True Range.
NATRComputes the Normalized Average True Range.
ADComputes the Chaikin A/D (accumulation/distribution) Line.
ADOSCComputes the Chaikin A/D Oscillator.
OBVComputes On-Balance Volume.
HT_TRENDLINEComputes the Hilbert Transform Instantaneous Trendline.
HT_SINEComputes the Hilbert Transform Sine Wave.
HT_TRENDMODEComputes the Hilbert Transform Trend vs Cycle Mode.
HT_DCPERIODComputes the Hilbert Transform Dominant Cycle Period.
HT_DCPHASEComputes the Hilbert Transform Dominant Cycle Phase.
HT_PHASORComputes the Hilbert Transform Phasor Components.

What you can do with it

Analyze a stock on demand

An agent pulls a daily time series, the company overview, and a few technical indicators to produce a grounded snapshot of how a stock is trading and what its fundamentals look like.

Track macro and commodities

The agent reads CPI, Treasury yields, and commodity prices to summarize the macro backdrop without a human assembling the figures by hand.

FAQ

Is it free?
Yes. A free Alpha Vantage API key works with the server; the key governs your rate limits, and premium endpoints and higher limits require a paid plan.
Does it support remote/OAuth?
It offers a hosted endpoint at https://mcp.alphavantage.co/mcp where you append your API key as an apikey query parameter; there is no OAuth. It can also run locally over stdio with the key passed as an argument.
← Browse all finance servers