Alpha Vantage MCP Server

Enables AI agents and applications to access real-time and 20+ years historical financial market data through natural language queries.

Alpha Vantage Logo

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, get your free Alpha Vantage API key, copy it to your clipboard, then follow the instructions below for the agentic tool/platform of your interest.

πŸ‘‰ Any questions? Please contact [email protected]

⭐ View MCP source code on Github

Connection Examples

Remote Server Connection:

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

Local Server Connection:

uvx av-mcp YOUR_API_KEY

Setup Instructions by Use Case

πŸ’¬πŸ“Š Power your chatbot with financial data

Install in Claude

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:

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

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):

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:

{
  "mcpServers": {
    "alphavantage": {
      "command": "uvx",
      "args": ["av-mcp", "YOUR_API_KEY"]
    }
  }
}

Replace YOUR_API_KEY with your actual Alpha Vantage API key.

Install in ChatGPT

  • ChatGPT Plus account (or higher tier)
  • Developer mode enabled (beta feature) - see OpenAI's Developer Mode documentation

Setup:

  1. Go to ChatGPT Settings β†’ Connectors
  2. Scroll down, enable Advanced settings β†’ Developer mode
  3. Return to the Apps & Connectors submenu, then click Create in the upper-right corner.
  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 are not persisted, meaning the conversation will 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:
    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:
    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.
    Why aren't you receiving a JSON response?  
    
    • Then, regardless of the response, prompt ChatGPT
    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:
    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.

πŸ€–πŸ“ˆ Create agentic workflows for quantitative investing

Configure in OpenAI Agent Builder

  • OpenAI account with access to Agent Builder (e.g., billing details added, organization verified)

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:

You are a helpful financial agent with access to market data through Alpha Vantage MCP Server.
When retrieving financial data, examine the Alpha Vantage MCP Server function definitions directly rather than using the SEARCH endpoint.

Install in OpenAI Agents SDK

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.

πŸ’»πŸ’΅ Code up fintech apps

Install in OpenAI Codex

  • 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.

  • Download the companion .md file from Github Gist.
  • For additional support links, please check the video description on YouTube.

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

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`:

[mcp_servers.alphavantage] command = "uvx" args = ["av-mcp", "YOUR_API_KEY"]


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

Then connect with:

/mcp


**Install in Visual Studio Code** 

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`:

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


#### VS Code Local Server Connection

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

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

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

Open the Chat view and select Agent mode

Install in Cursor

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:

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

Cursor Local Server Connection


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

Install in Claude Code

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

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

Claude Code Local Server Connection


Then run:

claude mcp add alphavantage -- uvx av-mcp YOUR_API_KEY


Run `claude` in your terminal from your project directory.

/mcp


**Install in Gemini CLI** 

See Gemini CLI Configuration for more information.

**Gemini CLI Remote Server Connection (Recommended):**

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


**Gemini CLI Local Server Connection:**

Then run:

gemini mcp add alphavantage uvx av-mcp YOUR_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):
{
  "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):


If the `mcpServers` object does not exist, create it.

### Category Filtering

Optionally filter available tools by category using:

* **Query parameter**: `?categories=core_stock_apis,alpha_intelligence`

Available categories:

* `core_stock_apis` \- Core stock market data APIs
* `options_data_apis` \- Options data APIs
* `alpha_intelligence` \- News sentiment and intelligence APIs
* `fundamental_data` \- Company fundamentals and financial data
* `forex` \- Foreign exchange rates and data
* `cryptocurrencies` \- Digital and crypto currencies data
* `commodities` \- Commodities and precious metals data
* `economic_indicators` \- Economic indicators and market data
* `technical_indicators` \- Technical analysis indicators and calculations
* `ping` \- Health check and utility tools

If no categories are specified, all tools will be available.

## Tools Reference

| Category              | Tools                                                                                                                                                                                                                                                                                                                                                                                               |
| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| core\_stock\_apis     | TIME\_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\_apis   | REALTIME\_OPTIONS, HISTORICAL\_OPTIONS                                                                                                                                                                                                                                                                                                                                                              |
| alpha\_intelligence   | NEWS\_SENTIMENT, EARNINGS\_CALL\_TRANSCRIPT, TOP\_GAINERS\_LOSERS, INSIDER\_TRANSACTIONS, ANALYTICS\_FIXED\_WINDOW, ANALYTICS\_SLIDING\_WINDOW                                                                                                                                                                                                                                                      |
| fundamental\_data     | COMPANY\_OVERVIEW, INCOME\_STATEMENT, BALANCE\_SHEET, CASH\_FLOW, EARNINGS, LISTING\_STATUS, EARNINGS\_CALENDAR, IPO\_CALENDAR                                                                                                                                                                                                                                                                      |
| forex                 | FX\_INTRADAY, FX\_DAILY, FX\_WEEKLY, FX\_MONTHLY                                                                                                                                                                                                                                                                                                                                                    |
| cryptocurrencies      | CURRENCY\_EXCHANGE\_RATE, DIGITAL\_CURRENCY\_INTRADAY, DIGITAL\_CURRENCY\_DAILY, DIGITAL\_CURRENCY\_WEEKLY, DIGITAL\_CURRENCY\_MONTHLY                                                                                                                                                                                                                                                              |
| commodities           | WTI, BRENT, NATURAL\_GAS, COPPER, ALUMINUM, WHEAT, CORN, COTTON, SUGAR, COFFEE, ALL\_COMMODITIES                                                                                                                                                                                                                                                                                                    |
| economic\_indicators  | REAL\_GDP, REAL\_GDP\_PER\_CAPITA, TREASURY\_YIELD, FEDERAL\_FUNDS\_RATE, CPI, INFLATION, RETAIL\_SALES, DURABLES, UNEMPLOYMENT, NONFARM\_PAYROLL                                                                                                                                                                                                                                                   |
| technical\_indicators | SMA, 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 |
| ping                  | PING, ADD\_TWO\_NUMBERS                                                                                                                                                                                                                                                                                                                                                                             |

### Table of Contents - API Tools

* core\_stock\_apis
* options\_data\_apis
* alpha\_intelligence
* fundamental\_data
* forex
* cryptocurrencies
* commodities
* economic\_indicators
* technical\_indicators
* ping

πŸ’‘ 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

| Category          | Tool                            | Description                                             |
| ----------------- | ------------------------------- | ------------------------------------------------------- |
| core\_stock\_apis | TIME\_SERIES\_INTRADAY          | Current and 20+ years of historical intraday OHLCV data |
| core\_stock\_apis | TIME\_SERIES\_DAILY             | Daily time series (OHLCV) covering 20+ years            |
| core\_stock\_apis | TIME\_SERIES\_DAILY\_ADJUSTED   | Daily adjusted OHLCV with split/dividend events         |
| core\_stock\_apis | TIME\_SERIES\_WEEKLY            | Weekly time series (last trading day of week)           |
| core\_stock\_apis | TIME\_SERIES\_WEEKLY\_ADJUSTED  | Weekly adjusted time series with dividends              |
| core\_stock\_apis | TIME\_SERIES\_MONTHLY           | Monthly time series (last trading day of month)         |
| core\_stock\_apis | TIME\_SERIES\_MONTHLY\_ADJUSTED | Monthly adjusted time series with dividends             |
| core\_stock\_apis | GLOBAL\_QUOTE                   | Latest price and volume for a ticker                    |
| core\_stock\_apis | REALTIME\_BULK\_QUOTES          | Realtime quotes for up to 100 symbols                   |
| core\_stock\_apis | SYMBOL\_SEARCH                  | Search for symbols by keywords                          |
| core\_stock\_apis | MARKET\_STATUS                  | Current market status worldwide                         |

### OPTIONS\_DATA\_APIS

| Category            | Tool                | Description                            |
| ------------------- | ------------------- | -------------------------------------- |
| options\_data\_apis | REALTIME\_OPTIONS   | Realtime US options data with Greeks   |
| options\_data\_apis | HISTORICAL\_OPTIONS | Historical options chain for 15+ years |

### ALPHA\_INTELLIGENCE

| Category            | Tool                       | Description                                  |
| ------------------- | -------------------------- | -------------------------------------------- |
| alpha\_intelligence | NEWS\_SENTIMENT            | Live and historical market news & sentiment  |
| alpha\_intelligence | EARNINGS\_CALL\_TRANSCRIPT | Earnings call transcripts with LLM sentiment |
| alpha\_intelligence | TOP\_GAINERS\_LOSERS       | Top 20 gainers, losers, and most active      |
| alpha\_intelligence | INSIDER\_TRANSACTIONS      | Latest and historical insider transactions   |
| alpha\_intelligence | ANALYTICS\_FIXED\_WINDOW   | Advanced analytics over fixed windows        |
| alpha\_intelligence | ANALYTICS\_SLIDING\_WINDOW | Advanced analytics over sliding windows      |

### FUNDAMENTAL\_DATA

| Category          | Tool               | Description                                        |
| ----------------- | ------------------ | -------------------------------------------------- |
| fundamental\_data | COMPANY\_OVERVIEW  | Company information, financial ratios, and metrics |
| fundamental\_data | INCOME\_STATEMENT  | Annual and quarterly income statements             |
| fundamental\_data | BALANCE\_SHEET     | Annual and quarterly balance sheets                |
| fundamental\_data | CASH\_FLOW         | Annual and quarterly cash flow statements          |
| fundamental\_data | EARNINGS           | Annual and quarterly earnings data                 |
| fundamental\_data | LISTING\_STATUS    | Listing and delisting data for equities            |
| fundamental\_data | EARNINGS\_CALENDAR | Earnings calendar for upcoming earnings            |
| fundamental\_data | IPO\_CALENDAR      | Initial public offering calendar                   |

### FOREX

| Category | Tool         | Description                     |
| -------- | ------------ | ------------------------------- |
| forex    | FX\_INTRADAY | Intraday foreign exchange rates |
| forex    | FX\_DAILY    | Daily foreign exchange rates    |
| forex    | FX\_WEEKLY   | Weekly foreign exchange rates   |
| forex    | FX\_MONTHLY  | Monthly foreign exchange rates  |

### CRYPTOCURRENCIES

| Category         | Tool                        | Description                                     |
| ---------------- | --------------------------- | ----------------------------------------------- |
| cryptocurrencies | CURRENCY\_EXCHANGE\_RATE    | Exchange rate between digital/crypto currencies |
| cryptocurrencies | DIGITAL\_CURRENCY\_INTRADAY | Intraday time series for digital currencies     |
| cryptocurrencies | DIGITAL\_CURRENCY\_DAILY    | Daily time series for digital currencies        |
| cryptocurrencies | DIGITAL\_CURRENCY\_WEEKLY   | Weekly time series for digital currencies       |
| cryptocurrencies | DIGITAL\_CURRENCY\_MONTHLY  | Monthly time series for digital currencies      |

### COMMODITIES

| Category    | Tool             | Description                                    |
| ----------- | ---------------- | ---------------------------------------------- |
| commodities | WTI              | West Texas Intermediate (WTI) crude oil prices |
| commodities | BRENT            | Brent crude oil prices                         |
| commodities | NATURAL\_GAS     | Henry Hub natural gas spot prices              |
| commodities | COPPER           | Global copper prices                           |
| commodities | ALUMINUM         | Global aluminum prices                         |
| commodities | WHEAT            | Global wheat prices                            |
| commodities | CORN             | Global corn prices                             |
| commodities | COTTON           | Global cotton prices                           |
| commodities | SUGAR            | Global sugar prices                            |
| commodities | COFFEE           | Global coffee prices                           |
| commodities | ALL\_COMMODITIES | All commodities prices                         |

### ECONOMIC\_INDICATORS

| Category             | Tool                   | Description                         |
| -------------------- | ---------------------- | ----------------------------------- |
| economic\_indicators | REAL\_GDP              | Real Gross Domestic Product         |
| economic\_indicators | REAL\_GDP\_PER\_CAPITA | Real GDP per capita                 |
| economic\_indicators | TREASURY\_YIELD        | Daily treasury yield rates          |
| economic\_indicators | FEDERAL\_FUNDS\_RATE   | Federal funds rate (interest rates) |
| economic\_indicators | CPI                    | Consumer Price Index                |
| economic\_indicators | INFLATION              | Inflation rates                     |
| economic\_indicators | RETAIL\_SALES          | Retail sales data                   |
| economic\_indicators | DURABLES               | Durable goods orders                |
| economic\_indicators | UNEMPLOYMENT           | Unemployment rate                   |
| economic\_indicators | NONFARM\_PAYROLL       | Non-farm payroll data               |

### TECHNICAL\_INDICATORS

| Category              | Tool          | Description                                                                          |
| --------------------- | ------------- | ------------------------------------------------------------------------------------ |
| technical\_indicators | SMA           | Simple moving average (SMA) values                                                   |
| technical\_indicators | EMA           | Exponential moving average (EMA) values                                              |
| technical\_indicators | WMA           | Weighted moving average (WMA) values                                                 |
| technical\_indicators | DEMA          | Double exponential moving average (DEMA) values                                      |
| technical\_indicators | TEMA          | Triple exponential moving average (TEMA) values                                      |
| technical\_indicators | TRIMA         | Triangular moving average (TRIMA) values                                             |
| technical\_indicators | KAMA          | Kaufman adaptive moving average (KAMA) values                                        |
| technical\_indicators | MAMA          | MESA adaptive moving average (MAMA) values                                           |
| technical\_indicators | VWAP          | Volume weighted average price (VWAP) for intraday time series                        |
| technical\_indicators | T3            | Triple exponential moving average (T3) values                                        |
| technical\_indicators | MACD          | Moving average convergence / divergence (MACD) values                                |
| technical\_indicators | MACDEXT       | Moving average convergence / divergence values with controllable moving average type |
| technical\_indicators | STOCH         | Stochastic oscillator (STOCH) values                                                 |
| technical\_indicators | STOCHF        | Stochastic fast (STOCHF) values                                                      |
| technical\_indicators | RSI           | Relative strength index (RSI) values                                                 |
| technical\_indicators | STOCHRSI      | Stochastic relative strength index (STOCHRSI) values                                 |
| technical\_indicators | WILLR         | Williams' %R (WILLR) values                                                          |
| technical\_indicators | ADX           | Average directional movement index (ADX) values                                      |
| technical\_indicators | ADXR          | Average directional movement index rating (ADXR) values                              |
| technical\_indicators | APO           | Absolute price oscillator (APO) values                                               |
| technical\_indicators | PPO           | Percentage price oscillator (PPO) values                                             |
| technical\_indicators | MOM           | Momentum (MOM) values                                                                |
| technical\_indicators | BOP           | Balance of power (BOP) values                                                        |
| technical\_indicators | CCI           | Commodity channel index (CCI) values                                                 |
| technical\_indicators | CMO           | Chande momentum oscillator (CMO) values                                              |
| technical\_indicators | ROC           | Rate of change (ROC) values                                                          |
| technical\_indicators | ROCR          | Rate of change ratio (ROCR) values                                                   |
| technical\_indicators | AROON         | Aroon (AROON) values                                                                 |
| technical\_indicators | AROONOSC      | Aroon oscillator (AROONOSC) values                                                   |
| technical\_indicators | MFI           | Money flow index (MFI) values                                                        |
| technical\_indicators | TRIX          | 1-day rate of change of a triple smooth exponential moving average (TRIX) values     |
| technical\_indicators | ULTOSC        | Ultimate oscillator (ULTOSC) values                                                  |
| technical\_indicators | DX            | Directional movement index (DX) values                                               |
| technical\_indicators | MINUS\_DI     | Minus directional indicator (MINUS\_DI) values                                       |
| technical\_indicators | PLUS\_DI      | Plus directional indicator (PLUS\_DI) values                                         |
| technical\_indicators | MINUS\_DM     | Minus directional movement (MINUS\_DM) values                                        |
| technical\_indicators | PLUS\_DM      | Plus directional movement (PLUS\_DM) values                                          |
| technical\_indicators | BBANDS        | Bollinger bands (BBANDS) values                                                      |
| technical\_indicators | MIDPOINT      | Midpoint values - (highest value + lowest value)/2                                   |
| technical\_indicators | MIDPRICE      | Midpoint price values - (highest high + lowest low)/2                                |
| technical\_indicators | SAR           | Parabolic SAR (SAR) values                                                           |
| technical\_indicators | TRANGE        | True range (TRANGE) values                                                           |
| technical\_indicators | ATR           | Average true range (ATR) values                                                      |
| technical\_indicators | NATR          | Normalized average true range (NATR) values                                          |
| technical\_indicators | AD            | Chaikin A/D line (AD) values                                                         |
| technical\_indicators | ADOSC         | Chaikin A/D oscillator (ADOSC) values                                                |
| technical\_indicators | OBV           | On balance volume (OBV) values                                                       |
| technical\_indicators | HT\_TRENDLINE | Hilbert transform, instantaneous trendline (HT\_TRENDLINE) values                    |
| technical\_indicators | HT\_SINE      | Hilbert transform, sine wave (HT\_SINE) values                                       |
| technical\_indicators | HT\_TRENDMODE | Hilbert transform, trend vs cycle mode (HT\_TRENDMODE) values                        |
| technical\_indicators | HT\_DCPERIOD  | Hilbert transform, dominant cycle period (HT\_DCPERIOD) values                       |
| technical\_indicators | HT\_DCPHASE   | Hilbert transform, dominant cycle phase (HT\_DCPHASE) values                         |
| technical\_indicators | HT\_PHASOR    | Hilbert transform, phasor components (HT\_PHASOR) values                             |

### PING

| Category | Tool              | Description                           |
| -------- | ----------------- | ------------------------------------- |
| ping     | PING              | Health check tool that returns 'pong' |
| ping     | ADD\_TWO\_NUMBERS | Example tool for adding two numbers   |

Related Servers