io.github.alphavantage/alpha_vantage_mcp

编码与调试

by alphavantage

提供实时金融市场数据,覆盖股票、外汇、加密货币、大宗商品以及各类经济指标。

把股票、外汇、加密货币到经济指标一站式接入,实时数据覆盖全面,特别适合做量化分析和金融应用开发。

什么是 io.github.alphavantage/alpha_vantage_mcp

提供实时金融市场数据,覆盖股票、外汇、加密货币、大宗商品以及各类经济指标。

README

Alpha Vantage MCP Server

The official Alpha Vantage API MCP server enables LLMs and agentic workflows to seamlessly interact with real-time and historical stock market data through the Model Context Protocol (MCP). Add this server to your favorite apps such as Claude, Claude Code, Cursor, VS Code, and many more to give them access to comprehensive financial data.


Quickstart

To use the server, <a href="https://www.alphavantage.co/support/#api-key" onclick="gtag('event', 'mcp_getKey')">get your free Alpha Vantage API key</a>, copy it to your clipboard, then follow the instructions below for the agentic tool/platform of your interest.

⚡ We use an optimization technique called Progressive Tool Discovery to minimize the number of tokens consumed (hence the cost incurred) while preserving the superb response quality when the MCP server is invoked. You can learn more about this technique here

⭐ View MCP source code on Github

👉 Any questions? Please contact support@alphavantage.co

 

Connection Examples

Remote Server Connection:

code
https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY

Local Server Connection:

code
uvx marketdata-mcp-server YOUR_API_KEY

 

Setup Instructions by Use Case

💡💡 I'm just exploring

Just exploring what to build? Check out the Trading Agents stock research tool (#1 trending on Github), which is powered by Alpha Vantage market data with no setup required.

 

💬📊 Power your chatbot with financial data

<details> <summary><b>Install in Claude</b></summary>

Requirements:

  • Claude Pro account (or higher tier)

Claude Remote Server Connection

To connect Claude (Web or Desktop) to this MCP server:

📺 Watch the setup tutorial - Click the image below to watch a step-by-step video guide:

Alpha Vantage MCP Setup Tutorial

📺 Already have your Alpha Vantage MCP server set up? Below are a few examples of Claude performing various stock analysis & charting tasks:

Alpha Vantage MCP Example Prompts

Query Param Option (Recommended):

  1. Go to claude.ai/settings/connectors (Web) or Settings → Connectors (Desktop)
  2. Click "Add Custom Connector"
  3. Add the MCP server URL with your API key: https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY (replace YOUR_API_KEY with your actual Alpha Vantage API key)
  4. Click "Connect"

OAuth Option:

  1. Go to claude.ai/settings/connectors (Web) or Settings → Connectors (Desktop)
  2. Click "Add Custom Connector"
  3. Add the MCP server URL: https://mcp.alphavantage.co/mcp
  4. Click "Connect"
  5. Enter your Alpha Vantage API token
  6. Click "Authorize Access"

Claude Local Server Connection

See Claude Desktop MCP docs for more info.

Install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Open Claude Desktop developer settings and edit your claude_desktop_config.json file to add the following configuration:

json
{
  "mcpServers": {
    "alphavantage": {
      "command": "uvx",
      "args": ["marketdata-mcp-server", "YOUR_API_KEY"]
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

</details> <details> <summary><b>Install in ChatGPT</b></summary>

Requirements:

Setup:

  1. Go to ChatGPT Settings → Apps
  2. Click on Advanced settings → enable Developer mode
  3. Return to the Apps submenu, then click Create app.
  4. MCP Server URL: https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY (replace YOUR_API_KEY with your actual Alpha Vantage API key).
  5. Authentication: No authentication

Note: When you return to your conversation, your UI will clearly indicate that you are in Developer mode. ChatGPT will retain memory of any previous remarks made within the same chat session; however, these sessions may not be persisted, meaning the conversation generated while Developer mode is active may not be saved or accessible once closed.

Troubleshooting for ChatGPT Plus Accounts

While Developer mode is available for both Plus and Pro accounts, on Plus accounts, first-time MCP tool execution may exhibit inconsistent behavior. This primarily affects large data payloads returned from the MCP server. If you notice that MCP calls abruptly terminate without returning any JSON response, try the following:

  1. Confirm Connection

    • Confirm the connection by prompting:
      code
      List 3 functions available in Alpha Vantage MCP server.
      
    • You should see endpoints like TIME_SERIES_DAILY and TIME_SERIES_INTRADAY.
  2. Force JSON Passthrough with simple payload

    • Use the following prompts in sequence to prime ChatGPT to surface the full payload:
      code
      Run ADD_TWO_NUMBERS from Alpha Vantage MCP Server using 3 and 6, and then show the JSON response.
      
    • If successful, ChatGPT should ask you to Confirm or Deny the call. Click Confirm.
    • If it doesn't, use the 🔄 "Try Again..." button and see if you get the Confirm/Deny prompt.
    • If this doesn't work, ask ChatGPT the following, and if it starts Thinking make it Skip, so that it doesn't try the call again and instead outputs its conversational response.
      code
      Why aren't you receiving a JSON response?
      
    • Then, regardless of the response, prompt ChatGPT
      code
      Explicitly request a return value from the tool response to verify what the server outputs.
      
    • Typically, this gets ChatGPT to ask you to Confirm or Deny the call. Click Confirm.
    • Sometimes, ChatGPT will insist it has no active connection to Alpha Vantage MCP Server. Just tell it to "try again".
    • If payloads still fail to appear, start a New Chat and try Step #2 again.
  3. Force JSON Passthrough with large payload

    • Once step #2 has been successful, repeat step #2 with the larger call:
      code
      Run TIME_SERIES_DAILY using NVDA, and then show the JSON response.
      
    • Use the fallback steps from Step #2 if ChatGPT does not ask you to Confirm or Deny the call.
    • Once you observe ChatGPT successfully return part of the raw JSON payload from the larger call, you can typically continue on with more conversational queries.
</details>

 

🤖📈 Create agentic workflows for quantitative investing

<details> <summary><b>Configure in OpenAI Agent Builder</b></summary>

Requirements:

📺 Watch the setup tutorial. (Click image below.)

Configure Alpha Vantage MCP Server + OpenAI Agent Builder

OpenAI Agent Builder Connection

To connect OpenAI Agent Builder to this MCP server:

  1. Do not add a separate MCP Server object. Instead, click on your agent in OpenAI Agent Builder to add the MCP Server directly to the agent.
  2. Find the Tools section of the agent and click the + button to add a new tool
  3. Select MCP Server
  4. Click "+ Server" in the upper right of the "Add MCP server" menu
  5. Configure the MCP server with the following settings:
    • URL: https://mcp.alphavantage.co/mcp
    • Label: Alpha Vantage MCP Server (or any name you prefer)
    • Description: Financial market data and technical indicators (or any description you prefer)
    • Authentication: Select "Access token / API key" (should be default)
    • Access Token: Enter your Alpha Vantage API key
  6. Click Connect
  7. If successful, the next prompt will display all the tools. Scroll to the bottom and click Add.

Recommended Agent Instructions:

Add the following instruction to your agent's configuration to optimize performance:

code
You are a helpful financial agent with access to market data through Alpha Vantage MCP Server.

IMPORTANT: Alpha Vantage functions are accessed via wrapper tools:
- Use TOOL_LIST to see available functions (TIME_SERIES_DAILY, RSI, COMPANY_OVERVIEW, etc.)
- Use TOOL_CALL with the format: TOOL_CALL(tool_name="FUNCTION_NAME", arguments={...})
- Example: TOOL_CALL(tool_name="TIME_SERIES_DAILY", arguments={"symbol": "AAPL", "outputsize": "compact"})
</details> <details> <summary><b>Install in OpenAI Agents SDK</b></summary>

To use the Alpha Vantage MCP server with OpenAI Agents SDK, see our example agent that demonstrates:

  • Interactive financial analysis agent
  • Session management for conversation continuity
  • Real-time tool execution with Alpha Vantage data
  • Support for both HTTP and stdio MCP connections

The example includes a complete setup guide and configuration templates.

</details>

 

💻💵 Code up fintech apps

<details> <summary><b>Install in OpenAI Codex</b></summary>

Requirements:

  • ChatGPT Plus account (or higher tier)

See OpenAI Codex for more information.

📺 Watch the setup tutorial. (Click image below.) This video additionally provides guidance on handling setup errors and building complete end-to-end applications which are empowered to fetch market data to power dynamic, data-driven visualizations.

Alpha Vantage MCP + Codex Tutorial

Install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Install Codex CLI v0.34 or later to avoid compatibility issues.

bash
# Install (if not already installed)
npm install -g @openai/codex

# Or update to the latest version
npm update -g @openai/codex

# Verify installation and version
codex --version

Add the following configuration to your Codex MCP server settings by editing ~/.codex/config.toml:

toml
[mcp_servers.alphavantage]
command = "uvx"
args = ["marketdata-mcp-server", "YOUR_API_KEY"]

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Run codex in your terminal from your project directory. First-time users will be guided through additional prompts.

Then connect with:

code
/mcp
</details> <details> <summary><b>Install in VS Code (Visual Studio Code)</b></summary>

See VS Code MCP docs for more info.

Create .vscode/mcp.json (your VS Code MCP config file) in your workspace, and paste into it one of the following configurations, depending on whether you’re connecting remotely or running the server locally.

VS Code Remote Server Connection

Paste the following into .vscode/mcp.json:

json
{
  "servers": {
    "alphavantage": {
      "type": "http",
      "url": "https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY"
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

VS Code Local Server Connection

First, install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Then, paste the following into .vscode/mcp.json:

json
{
  "servers": {
    "alphavantage": {
      "type": "stdio",
      "command": "uvx",
      "args": ["marketdata-mcp-server", "YOUR_API_KEY"]
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Open the Chat view and select Agent mode

</details> <details> <summary><b>Install in Cursor</b></summary>

See Cursor MCP docs for more information.

Paste one of the following configurations into your Cursor ~/.cursor/mcp.json file, depending on whether you’re connecting remotely or running the server locally. You may also install in a specific project by creating .cursor/mcp.json in your project folder.

Cursor Remote Server Connection

Configure Cursor by editing ~/.cursor/mcp.json:

json
{
  "mcpServers": {
    "alphavantage": {
      "url": "https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY"
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Cursor Local Server Connection

First, install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Then, paste the following into your Cursor ~/.cursor/mcp.json file:

json
{
  "mcpServers": {
    "alphavantage": {
      "command": "uvx",
      "args": ["marketdata-mcp-server", "YOUR_API_KEY"]
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

</details> <details> <summary><b>Install in Claude Code</b></summary>

Requirements:

  • Claude Pro account (or higher tier)

See Claude Code MCP docs for more information.

Run one of the following commands, depending on whether you’re connecting remotely or running the server locally.

Claude Code Remote Server Connection

bash
claude mcp add -t http alphavantage https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Claude Code Local Server Connection

First, install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Then run:

bash
claude mcp add alphavantage -- uvx marketdata-mcp-server YOUR_API_KEY

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Run claude in your terminal from your project directory.

Then connect with:

code
/mcp
</details> <details> <summary><b>Install in Gemini CLI</b></summary>

See Gemini CLI Configuration for more information.

Run one of the following commands, depending on whether you’re connecting remotely or running the server locally.

Gemini CLI Remote Server Connection (Recommended):

bash
gemini mcp add -t http alphavantage https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Gemini CLI Local Server Connection:

Install uv (a modern Python package and project manager):

bash
curl -LsSf https://astral.sh/uv/install.sh | sh

Then run:

bash
gemini mcp add alphavantage uvx marketdata-mcp-server YOUR_API_KEY

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Manual Configuration:

  1. Open the Gemini CLI settings file. The location is ~/.gemini/settings.json (where ~ is your home directory).
  2. Add the following to the mcpServers object in your settings.json file (replace YOUR_API_KEY with your actual Alpha Vantage API key):
json
{
  "mcpServers": {
    "alphavantage": {
      "httpUrl": "https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY"
    }
  }
}

Or, for a local server (replace YOUR_API_KEY with your actual Alpha Vantage API key):

json
{
  "mcpServers": {
    "alphavantage": {
      "command": "uvx",
      "args": ["marketdata-mcp-server", "YOUR_API_KEY"]
    }
  }
}

If the mcpServers object does not exist, create it.

</details>

 

Examples

Below are four example prompts and Claude's expected responses when using the MCP server.

 

1. Fetch and display structured market data across assets

Prompt: “Give me last week’s OHLCV data for IBM”

Expected Behavior:

  • Claude will use progressive discovery to find and invoke the correct tool, in this case the TIME_SERIES_DAILY function.
  • Claude will make the necessary request to the TIME_SERIES_DAILY function and receive the relevant response.
  • Claude will then respond directly in the chat interface with both text and image content:

Here's IBM's OHLCV data for last week (March 16–20, 2026):

<img width="751" height="348" alt="IBM_price" src="https://github.com/user-attachments/assets/6316329d-81a6-4972-a857-f059ceccf040" />

 

IBM had a strong Tuesday rally to $256.11, then pulled back through the rest of the week. Friday saw a sharp selloff to close at the session low of $241.77 on more than double the average weekly volume — likely some notable news or broad market pressure driving that move.

 

2. Use technical indicators and price data to conduct technical analysis

Prompt: “Get NVDA’s hourly price data for the last two days. Compute RSI as well, and plot both hourly with guidelines at 30 and 70 for RSI”

Expected Behavior:

  • Claude will use progressive discovery to find and invoke the correct tools, in this case the TIME_SERIES_INTRADAY function and the RSI function.
  • Claude will make two separate requests, one to the TIME_SERIES_INTRADAY function and one to the RSI function. Claude will receive the relevant responses.
  • Claude will then make an HTML artifact with the requested visualizations:

 

<img width="770" height="892" alt="NVDA_RSI" src="https://github.com/user-attachments/assets/f9e36e1a-d1d2-4816-b687-95e4c35d91f8" />

 

3. Visualize fundamental data

Prompt: “Help me visualize AAPL’s earnings surprise trends for the past 4 quarters. Compare actual EPS to analyst estimates”

Expected Behavior:

  • Claude will use progressive discovery to find and invoke the correct tool, in this case the EARNINGS function.
  • Claude will make the necessary request to the EARNINGS function and receive the relevant response.
  • Claude will do any necessary calculations on top of the returned data, and create an HTML artifact:
<img width="781" height="842" alt="AAPL_earnings" src="https://github.com/user-attachments/assets/714d7eb9-e210-4008-9757-5896c8eabb4d" />

 

4. Compare performance across asset classes

Prompt: “Compare gold, silver, and Bitcoin performance over the past 5 years”

Expected Behavior:

  • Claude will use progressive discovery to find and invoke the correct tools, in this case the TIME_SERIES_MONTHLY function and the DIGITAL_CURRENCY_MONTHLY function.
  • Claude will make three separate requests, one to the TIME_SERIES_INTRADAY function using the GLD symbol, one to the TIME_SERIES_INTRADAY function using the SLV symbol, and one to the DIGITAL_CURRENCY_MONTHLY function using the BTC symbol. Claude will receive the relevant responses.
  • Claude will do any necessary calculations on top of the returned data, and create an HTML artifact:
<img width="770" height="756" alt="Commodity_price" src="https://github.com/user-attachments/assets/953c5bcb-1b30-4880-a78b-7bc2ae3a8a70" />

 

Tools Reference

Note: The tools listed below are accessed through the MCP server's TOOL_CALL wrapper function.

CategoryTools
core_stock_apisTIME_SERIES_INTRADAY, TIME_SERIES_DAILY, TIME_SERIES_DAILY_ADJUSTED, TIME_SERIES_WEEKLY, TIME_SERIES_WEEKLY_ADJUSTED, TIME_SERIES_MONTHLY, TIME_SERIES_MONTHLY_ADJUSTED, GLOBAL_QUOTE, REALTIME_BULK_QUOTES, SYMBOL_SEARCH, MARKET_STATUS
options_data_apisREALTIME_OPTIONS, HISTORICAL_OPTIONS
alpha_intelligenceNEWS_SENTIMENT, EARNINGS_CALL_TRANSCRIPT, TOP_GAINERS_LOSERS, INSIDER_TRANSACTIONS, INSTITUTIONAL_HOLDINGS, ANALYTICS_FIXED_WINDOW, ANALYTICS_SLIDING_WINDOW
fundamental_dataCOMPANY_OVERVIEW, INCOME_STATEMENT, BALANCE_SHEET, CASH_FLOW, EARNINGS, LISTING_STATUS, EARNINGS_CALENDAR, IPO_CALENDAR
forexFX_INTRADAY, FX_DAILY, FX_WEEKLY, FX_MONTHLY
cryptocurrenciesCURRENCY_EXCHANGE_RATE, DIGITAL_CURRENCY_INTRADAY, DIGITAL_CURRENCY_DAILY, DIGITAL_CURRENCY_WEEKLY, DIGITAL_CURRENCY_MONTHLY
commoditiesWTI, BRENT, NATURAL_GAS, COPPER, ALUMINUM, WHEAT, CORN, COTTON, SUGAR, COFFEE, GOLD_SILVER_SPOT, GOLD_SILVER_HISTORY, ALL_COMMODITIES
economic_indicatorsREAL_GDP, REAL_GDP_PER_CAPITA, TREASURY_YIELD, FEDERAL_FUNDS_RATE, CPI, INFLATION, RETAIL_SALES, DURABLES, UNEMPLOYMENT, NONFARM_PAYROLL
technical_indicatorsSMA, EMA, WMA, DEMA, TEMA, TRIMA, KAMA, MAMA, VWAP, T3, MACD, MACDEXT, STOCH, STOCHF, RSI, STOCHRSI, WILLR, ADX, ADXR, APO, PPO, MOM, BOP, CCI, CMO, ROC, ROCR, AROON, AROONOSC, MFI, TRIX, ULTOSC, DX, MINUS_DI, PLUS_DI, MINUS_DM, PLUS_DM, BBANDS, MIDPOINT, MIDPRICE, SAR, TRANGE, ATR, NATR, AD, ADOSC, OBV, HT_TRENDLINE, HT_SINE, HT_TRENDMODE, HT_DCPERIOD, HT_DCPHASE, HT_PHASOR
pingPING, ADD_TWO_NUMBERS

 

Table of Contents - API Tools

💡 Each of these MCP tools maps to a corresponding Alpha Vantage API endpoint. If you are interested in the full API specs (in addition to the brief tool descriptions below), please refer to the Alpha Vantage API documentation.

CORE_STOCK_APIS

CategoryToolDescription
core_stock_apisTIME_SERIES_INTRADAYCurrent and 20+ years of historical intraday OHLCV data
core_stock_apisTIME_SERIES_DAILYDaily time series (OHLCV) covering 20+ years
core_stock_apisTIME_SERIES_DAILY_ADJUSTEDDaily adjusted OHLCV with split/dividend events
core_stock_apisTIME_SERIES_WEEKLYWeekly time series (last trading day of week)
core_stock_apisTIME_SERIES_WEEKLY_ADJUSTEDWeekly adjusted time series with dividends
core_stock_apisTIME_SERIES_MONTHLYMonthly time series (last trading day of month)
core_stock_apisTIME_SERIES_MONTHLY_ADJUSTEDMonthly adjusted time series with dividends
core_stock_apisGLOBAL_QUOTELatest price and volume for a ticker
core_stock_apisREALTIME_BULK_QUOTESRealtime quotes for up to 100 symbols
core_stock_apisSYMBOL_SEARCHSearch for symbols by keywords
core_stock_apisMARKET_STATUSCurrent market status worldwide

OPTIONS_DATA_APIS

CategoryToolDescription
options_data_apisREALTIME_OPTIONSRealtime US options data with Greeks
options_data_apisHISTORICAL_OPTIONSHistorical options chain for 15+ years

ALPHA_INTELLIGENCE

CategoryToolDescription
alpha_intelligenceNEWS_SENTIMENTLive and historical market news & sentiment
alpha_intelligenceEARNINGS_CALL_TRANSCRIPTEarnings call transcripts with LLM sentiment
alpha_intelligenceTOP_GAINERS_LOSERSTop 20 gainers, losers, and most active
alpha_intelligenceINSIDER_TRANSACTIONSLatest and historical insider transactions
alpha_intelligenceINSTITUTIONAL_HOLDINGSInstitutional ownership and holdings information
alpha_intelligenceANALYTICS_FIXED_WINDOWAdvanced analytics over fixed windows
alpha_intelligenceANALYTICS_SLIDING_WINDOWAdvanced analytics over sliding windows

FUNDAMENTAL_DATA

CategoryToolDescription
fundamental_dataCOMPANY_OVERVIEWCompany information, financial ratios, and metrics
fundamental_dataINCOME_STATEMENTAnnual and quarterly income statements
fundamental_dataBALANCE_SHEETAnnual and quarterly balance sheets
fundamental_dataCASH_FLOWAnnual and quarterly cash flow statements
fundamental_dataEARNINGSAnnual and quarterly earnings data
fundamental_dataLISTING_STATUSListing and delisting data for equities
fundamental_dataEARNINGS_CALENDAREarnings calendar for upcoming earnings
fundamental_dataIPO_CALENDARInitial public offering calendar

FOREX

CategoryToolDescription
forexFX_INTRADAYIntraday foreign exchange rates
forexFX_DAILYDaily foreign exchange rates
forexFX_WEEKLYWeekly foreign exchange rates
forexFX_MONTHLYMonthly foreign exchange rates

CRYPTOCURRENCIES

CategoryToolDescription
cryptocurrenciesCURRENCY_EXCHANGE_RATEExchange rate between digital/crypto currencies
cryptocurrenciesDIGITAL_CURRENCY_INTRADAYIntraday time series for digital currencies
cryptocurrenciesDIGITAL_CURRENCY_DAILYDaily time series for digital currencies
cryptocurrenciesDIGITAL_CURRENCY_WEEKLYWeekly time series for digital currencies
cryptocurrenciesDIGITAL_CURRENCY_MONTHLYMonthly time series for digital currencies

COMMODITIES

CategoryToolDescription
commoditiesWTIWest Texas Intermediate (WTI) crude oil prices
commoditiesBRENTBrent crude oil prices
commoditiesNATURAL_GASHenry Hub natural gas spot prices
commoditiesCOPPERGlobal copper prices
commoditiesALUMINUMGlobal aluminum prices
commoditiesWHEATGlobal wheat prices
commoditiesCORNGlobal corn prices
commoditiesCOTTONGlobal cotton prices
commoditiesSUGARGlobal sugar prices
commoditiesCOFFEEGlobal coffee prices
commoditiesGOLD_SILVER_SPOTLive spot prices for gold and silver
commoditiesGOLD_SILVER_HISTORYHistorical gold and silver prices (daily, weekly, monthly)
commoditiesALL_COMMODITIESAll commodities prices

ECONOMIC_INDICATORS

CategoryToolDescription
economic_indicatorsREAL_GDPReal Gross Domestic Product
economic_indicatorsREAL_GDP_PER_CAPITAReal GDP per capita
economic_indicatorsTREASURY_YIELDDaily treasury yield rates
economic_indicatorsFEDERAL_FUNDS_RATEFederal funds rate (interest rates)
economic_indicatorsCPIConsumer Price Index
economic_indicatorsINFLATIONInflation rates
economic_indicatorsRETAIL_SALESRetail sales data
economic_indicatorsDURABLESDurable goods orders
economic_indicatorsUNEMPLOYMENTUnemployment rate
economic_indicatorsNONFARM_PAYROLLNon-farm payroll data

TECHNICAL_INDICATORS

CategoryToolDescription
technical_indicatorsSMASimple moving average (SMA) values
technical_indicatorsEMAExponential moving average (EMA) values
technical_indicatorsWMAWeighted moving average (WMA) values
technical_indicatorsDEMADouble exponential moving average (DEMA) values
technical_indicatorsTEMATriple exponential moving average (TEMA) values
technical_indicatorsTRIMATriangular moving average (TRIMA) values
technical_indicatorsKAMAKaufman adaptive moving average (KAMA) values
technical_indicatorsMAMAMESA adaptive moving average (MAMA) values
technical_indicatorsVWAPVolume weighted average price (VWAP) for intraday time series
technical_indicatorsT3Triple exponential moving average (T3) values
technical_indicatorsMACDMoving average convergence / divergence (MACD) values
technical_indicatorsMACDEXTMoving average convergence / divergence values with controllable moving average type
technical_indicatorsSTOCHStochastic oscillator (STOCH) values
technical_indicatorsSTOCHFStochastic fast (STOCHF) values
technical_indicatorsRSIRelative strength index (RSI) values
technical_indicatorsSTOCHRSIStochastic relative strength index (STOCHRSI) values
technical_indicatorsWILLRWilliams' %R (WILLR) values
technical_indicatorsADXAverage directional movement index (ADX) values
technical_indicatorsADXRAverage directional movement index rating (ADXR) values
technical_indicatorsAPOAbsolute price oscillator (APO) values
technical_indicatorsPPOPercentage price oscillator (PPO) values
technical_indicatorsMOMMomentum (MOM) values
technical_indicatorsBOPBalance of power (BOP) values
technical_indicatorsCCICommodity channel index (CCI) values
technical_indicatorsCMOChande momentum oscillator (CMO) values
technical_indicatorsROCRate of change (ROC) values
technical_indicatorsROCRRate of change ratio (ROCR) values
technical_indicatorsAROONAroon (AROON) values
technical_indicatorsAROONOSCAroon oscillator (AROONOSC) values
technical_indicatorsMFIMoney flow index (MFI) values
technical_indicatorsTRIX1-day rate of change of a triple smooth exponential moving average (TRIX) values
technical_indicatorsULTOSCUltimate oscillator (ULTOSC) values
technical_indicatorsDXDirectional movement index (DX) values
technical_indicatorsMINUS_DIMinus directional indicator (MINUS_DI) values
technical_indicatorsPLUS_DIPlus directional indicator (PLUS_DI) values
technical_indicatorsMINUS_DMMinus directional movement (MINUS_DM) values
technical_indicatorsPLUS_DMPlus directional movement (PLUS_DM) values
technical_indicatorsBBANDSBollinger bands (BBANDS) values
technical_indicatorsMIDPOINTMidpoint values - (highest value + lowest value)/2
technical_indicatorsMIDPRICEMidpoint price values - (highest high + lowest low)/2
technical_indicatorsSARParabolic SAR (SAR) values
technical_indicatorsTRANGETrue range (TRANGE) values
technical_indicatorsATRAverage true range (ATR) values
technical_indicatorsNATRNormalized average true range (NATR) values
technical_indicatorsADChaikin A/D line (AD) values
technical_indicatorsADOSCChaikin A/D oscillator (ADOSC) values
technical_indicatorsOBVOn balance volume (OBV) values
technical_indicatorsHT_TRENDLINEHilbert transform, instantaneous trendline (HT_TRENDLINE) values
technical_indicatorsHT_SINEHilbert transform, sine wave (HT_SINE) values
technical_indicatorsHT_TRENDMODEHilbert transform, trend vs cycle mode (HT_TRENDMODE) values
technical_indicatorsHT_DCPERIODHilbert transform, dominant cycle period (HT_DCPERIOD) values
technical_indicatorsHT_DCPHASEHilbert transform, dominant cycle phase (HT_DCPHASE) values
technical_indicatorsHT_PHASORHilbert transform, phasor components (HT_PHASOR) values

PING

CategoryToolDescription
pingPINGHealth check tool that returns 'pong'
pingADD_TWO_NUMBERSExample tool for adding two numbers

常见问题

io.github.alphavantage/alpha_vantage_mcp 是什么?

提供实时金融市场数据,覆盖股票、外汇、加密货币、大宗商品以及各类经济指标。

相关 Skills

前端设计

by anthropics

Universal
热门

面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。

想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。

编码与调试
未扫描109.6k

网页构建器

by anthropics

Universal
热门

面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。

在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。

编码与调试
未扫描109.6k

网页应用测试

by anthropics

Universal
热门

用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。

借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。

编码与调试
未扫描109.6k

相关 MCP Server

GitHub

编辑精选

by GitHub

热门

GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。

这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。

编码与调试
82.9k

by Context7

热门

Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。

它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。

编码与调试
51.5k

by tldraw

热门

tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。

这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。

编码与调试
46.2k

评论