Alpha Vantage MCP Server
OfficialEnables OpenAI Agent Builder agents to access real-time and historical stock market data, technical indicators, and financial information via the Alpha Vantage API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Alpha Vantage MCP Serverwhat's the current price of AAPL?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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, 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.
The Alpha Vantage functions are exposed directly as MCP tools. MCP clients discover the available tools with tools/list and invoke them with tools/call.
⭐ View MCP source code on Github
👉 Any questions? Please contact support@alphavantage.co
Connection Examples
Remote Server Connection (Recommended, OAuth):
https://mcp.alphavantage.co/mcpWhen you connect, an authentication page opens where you enter and authorize your Alpha Vantage API key. If you would like to update/rotate the API key in the future, simple disconnect then reconnect the MCP server and enter the new key in the authentication page.
Remote Server Connection (Legacy, API key in URL, deprecated):
https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEYLocal Server Connection:
uvx marketdata-mcp-server YOUR_API_KEY
Setup Instructions by Platform
💬📊 Chatbots
Requirements:
Any free or paid Claude account
📺 Watch the setup tutorial. (Click image below.)

Claude Remote Server Connection (Recommended, OAuth)
The Alpha Vantage MCP Server is already listed in Claude's official Connectors directory. Getting started is easy:
Go to https://claude.ai/new#settings/customize-connectors (Web) or Settings → Connectors (Desktop)
Click the "Add" button in the upper-right corner and choose "Browse connectors" in the dropdown menu
Search for "Alpha Vantage" in the search box
Click on the "Alpha Vantage MCP Server" tile returned by the search result
Click "Connect" near the top-right of the page
Enter your Alpha Vantage API key in the pop-up authentication page
Click "Authorize Access"
If you would like to update/rotate the API key in the future, simply disconnect then reconnect the MCP server and follow steps #6 and #7 again.
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 | shOpen Claude Desktop developer settings and edit your claude_desktop_config.json file to add the following configuration:
{
"mcpServers": {
"alphavantage": {
"command": "uvx",
"args": ["marketdata-mcp-server", "YOUR_API_KEY"]
}
}
}Replace YOUR_API_KEY with your actual Alpha Vantage API key.
Requirements:
Any free or paid ChatGPT account
ChatGPT Remote Server Connection (Recommended, OAuth)
The Alpha Vantage MCP Server is already listed in ChatGPT's official app directory. Getting started is easy:
In ChatGPT, click Plugins
Type "Alpha Vantage" into the Search plugins bar
Click the + (or Install) button on the Alpha Vantage result.
Enter your Alpha Vantage API key in the pop-up authentication page
Click "Authorize Access"
If you would like to update/rotate the API key in the future, simply disconnect then reconnect the MCP server and follow steps #4 and #5 again.
Test your connection with a sample query:
Give me last week's OHLCV data for IBM📺 Below are a few examples of ChatGPT performing various stock analysis & charting tasks:

Requirements:
SuperGrok (or higher tier)
Setup:
Click the
+button → Connectors → Add connector → CustomName: Alpha Vantage MCP Server (or whatever you prefer)
Server URL:
https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY(replaceYOUR_API_KEYwith your actual Alpha Vantage API key).Click Add Connector
🤖📈 Agentic systems
Requirements:
Azure subscription with access to Azure AI Foundry
📺 Watch the setup tutorial. (Click image below.)

Microsoft Azure AI Foundry — Agent Service Connection
To connect a Foundry agent to this MCP server:
Open your agent (or Create Agent from Home Dashboard) in Azure AI Foundry's Agent playground or Agent designer.
In the Tools section of the agent configuration, click Add → Browse All Tools. Select the Catalog tab, then search for Alpha Vantage MCP Server or filter by Finance under the Category filter. Click Create.
Configure the connection with the following settings:
Name: Accept the default generated name, or enter your own
(read-only) Remote MCP Server endpoint:
https://mcp.alphavantage.co/mcp(read-only) Authentication: Key-based
Credential — apikey: Enter your Alpha Vantage API key
Click Connect.
Recommended Agent Instructions:
Add the following to your agent's system prompt to optimize performance:
You are a helpful financial agent with access to market data through Alpha Vantage MCP Server.
The Alpha Vantage functions (TIME_SERIES_DAILY, RSI, COMPANY_OVERVIEW, etc.) are exposed
directly as MCP tools. Call them by name with their parameters, e.g.
TIME_SERIES_DAILY(symbol="IBM", outputsize="compact").
Always use Alpha Vantage MCP Server for market data queries. Do not answer from prior knowledge or web search.Requirements:
Hermes Agent installed with the
hermesCLI available
Hermes Remote Server Connection (Recommended, OAuth)
Add the server and start the authorization flow:
hermes mcp add alphavantage --url https://mcp.alphavantage.co/mcp --auth oauth
hermes mcp login alphavantageOr configure it directly in config.yaml:
mcp_servers:
alphavantage:
url: https://mcp.alphavantage.co/mcp
auth: oauthA browser consent page opens where you enter and authorize your Alpha Vantage API key. If you would like to update/rotate the API key in the future, run hermes mcp login alphavantage (or hermes mcp reauth alphavantage) again and enter the new key on the consent page.
Verify the connection with:
hermes mcp test alphavantageHermes Remote Server Connection (API key in URL)
For non-interactive environments (e.g., terminal-only setups where the browser-based OAuth flow is not possible), put the API key in the server URL instead. Add the server to your config.yaml under mcp_servers:
mcp_servers:
alphavantage:
url: https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key. To update/rotate the API key, simply change the key in the URL.
Verify the connection with:
hermes mcp test alphavantageRequirements:
Mac with Apple Silicon (or dedicated Mac mini)
LLM API Key (OpenAI used in demo)
Messaging Platform Bot Token (Telegram used in demo)
📺 Watch the setup tutorial (click image below)

For additional support links, please check the video description on YouTube.
Requirements:
OpenAI account with access to Agent Builder (e.g., billing details added, organization verified)
📺 Watch the setup tutorial. (Click image below.)

OpenAI Agent Builder Connection
To connect OpenAI Agent Builder to this MCP server:
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.
Find the Tools section of the agent and click the + button to add a new tool
Select MCP Server
Click "+ Server" in the upper right of the "Add MCP server" menu
Configure the MCP server with the following settings:
URL:
https://mcp.alphavantage.co/mcpLabel:
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
Click Connect
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.
The Alpha Vantage functions (TIME_SERIES_DAILY, RSI, COMPANY_OVERVIEW, etc.) are exposed
directly as MCP tools. Call them by name with their parameters, e.g.
TIME_SERIES_DAILY(symbol="AAPL", outputsize="compact").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.
💻💵 Coding tools
Requirements:
Any free or paid Claude account
Claude Remote Server Connection (Recommended, OAuth)
The Alpha Vantage MCP Server is already listed in Claude's official Connectors directory. Getting started is easy:
Go to https://claude.ai/new#settings/customize-connectors (Web) or Settings → Connectors (Desktop)
Click the "Add" button in the upper-right corner and choose "Browse connectors" in the dropdown menu
Search for "Alpha Vantage" in the search box
Click on the "Alpha Vantage MCP Server" tile returned by the search result
Click "Connect" near the top-right of the page
Enter your Alpha Vantage API key in the pop-up authentication page
Click "Authorize Access"
If you would like to update/rotate the API key in the future, simply disconnect then reconnect the MCP server and follow steps #6 and #7 again.
Claude Code Local Server Connection
First, install uv (a modern Python package and project manager):
curl -LsSf https://astral.sh/uv/install.sh | shThen run:
claude mcp add alphavantage -- uvx marketdata-mcp-server YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key.
Run claude in your terminal from your project directory.
Then connect with:
/mcpRequirements:
Any free or paid ChatGPT account
See OpenAI Codex for more information.
Note: Codex and ChatGPT share the same account, so a plugin installed in one should be available for the other.
Codex Remote Server Connection via ChatGPT App (Recommended, OAuth)
The Alpha Vantage MCP Server is already listed in ChatGPT's official app directory. Getting started is easy:
In Codex, click Plugins
Type "Alpha Vantage" into the Search plugins bar
Click the + (or Install) button on the Alpha Vantage result.
Enter your Alpha Vantage API key in the pop-up authentication page
Click "Authorize Access"
If you would like to update/rotate the API key in the future, simply disconnect then reconnect the MCP server and follow steps #4 and #5 again.
Test your connection with a sample query:
Give me last week's OHLCV data for IBM📺 Watch the tutorial. (Click image below.)
⚠️ Legacy setup notice: The initial connection steps demonstrate the legacy local method. For new installations, we strongly recommend following the OAuth instructions above.
Starting at 01:41, the video covers troubleshooting and building end-to-end applications powered by Alpha Vantage market data and dynamic visualizations.

For additional support links, please check the video description on YouTube.
Codex Remote Server Connection via CLI (Alternative, OAuth)
Prefer the command line? Getting started is easy:
Add the server by running:
codex mcp add alphavantage --url https://mcp.alphavantage.co/mcpCodex will open your browser. Enter your Alpha Vantage API key in the pop-up authentication page
Click "Authorize Access"
Run
codexfrom your project directoryVerify the connection with:
/mcpIf you would like to update/rotate the API key in the future, simply run codex mcp add again and enter the new key in the authentication page.
Test your connection with a sample query:
Give me last week's OHLCV data for IBMSee 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"
}
}
}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):
curl -LsSf https://astral.sh/uv/install.sh | shThen, paste the following into .vscode/mcp.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
See Continue MCP docs for more information. Continue uses its own configuration format (not VS Code's mcp.json).
Create .continue/mcpServers/alphavantage.yaml in your workspace, and paste into it one of the following configurations, depending on whether you’re connecting remotely or running the server locally. (Recommended: Remote)
Continue Remote Server Connection
Paste the following into .continue/mcpServers/alphavantage.yaml:
name: Alpha Vantage MCP Server
version: 1.0
schema: v1
mcpServers:
- name: alphavantage
type: streamable-http
url: https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key.
Continue Local Server Connection
First, install uv (a modern Python package and project manager):
curl -LsSf https://astral.sh/uv/install.sh | shThen, paste the following into .continue/mcpServers/alphavantage.yaml:
name: Alpha Vantage MCP Server
version: 1.0
schema: v1
mcpServers:
- name: alphavantage
type: stdio
command: uvx
args:
- marketdata-mcp-server
- YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key.
Open the Continue panel and select Agent mode. Set up your LLM provider.
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"
}
}
}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):
curl -LsSf https://astral.sh/uv/install.sh | shThen, paste the following into your Cursor ~/.cursor/mcp.json file:
{
"mcpServers": {
"alphavantage": {
"command": "uvx",
"args": ["marketdata-mcp-server", "YOUR_API_KEY"]
}
}
}Replace YOUR_API_KEY with your actual Alpha Vantage API key.
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):
gemini mcp add -t http alphavantage https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key.
Gemini CLI Local Server Connection:
Install uv (a modern Python package and project manager):
curl -LsSf https://astral.sh/uv/install.sh | shThen run:
gemini mcp add alphavantage uvx marketdata-mcp-server YOUR_API_KEYReplace YOUR_API_KEY with your actual Alpha Vantage API key.
Manual Configuration:
Open the Gemini CLI settings file. The location is
~/.gemini/settings.json(where~is your home directory).Add the following to the
mcpServersobject in yoursettings.jsonfile (replaceYOUR_API_KEYwith 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):
{
"mcpServers": {
"alphavantage": {
"command": "uvx",
"args": ["marketdata-mcp-server", "YOUR_API_KEY"]
}
}
}If the mcpServers object does not exist, create it.
💡💡 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.
Related MCP server: Finance MCP Server
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 select 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):
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 select 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:
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 select 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:
4. Compare performance across asset classes
Prompt: “Compare gold, silver, and Bitcoin performance over the past 5 years”
Expected Behavior:
Claude will select 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:
Tools Reference
Note: The tools listed below are exposed directly as MCP tools and can be called by name.
Category | Tools |
core_stock_apis |
|
options_data_apis |
|
alpha_intelligence |
|
fundamental_data |
|
forex |
|
cryptocurrencies |
|
commodities |
|
economic_indicators |
|
technical_indicators |
|
ping |
|
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. For general guidance on choosing the best stock market data API and/or MCP server in the AI agent era, please refer to this article. Independent API & MCP aggregation platform API Market has also published a practitioner's guide to stock data, which details when to use an MCP server vs. a conventional API (or both) for your workflow design.
CORE_STOCK_APIS
Category | Tool | Description |
core_stock_apis |
| Current and 20+ years of historical intraday OHLCV data |
core_stock_apis |
| Daily time series (OHLCV) covering 20+ years |
core_stock_apis |
| Daily adjusted OHLCV with split/dividend events |
core_stock_apis |
| Weekly time series (last trading day of week) |
core_stock_apis |
| Weekly adjusted time series with dividends |
core_stock_apis |
| Monthly time series (last trading day of month) |
core_stock_apis |
| Monthly adjusted time series with dividends |
core_stock_apis |
| Latest price and volume for a ticker |
core_stock_apis |
| Realtime quotes for up to 100 symbols |
core_stock_apis |
| Realtime bid and ask prices for up to 100 US-traded symbols, including extended hours |
core_stock_apis |
| Search for symbols by keywords |
core_stock_apis |
| Current market status worldwide |
OPTIONS_DATA_APIS
Category | Tool | Description |
options_data_apis |
| Realtime US options data with Greeks |
options_data_apis |
| Realtime US options FMV (fair market value) mark prices |
options_data_apis |
| Historical options chain for 15+ years |
ALPHA_INTELLIGENCE
Category | Tool | Description |
alpha_intelligence |
| Live and historical market news & sentiment |
alpha_intelligence |
| Earnings call transcripts with LLM sentiment |
alpha_intelligence |
| Top 20 gainers, losers, and most active |
alpha_intelligence |
| Latest and historical insider transactions |
alpha_intelligence |
| Institutional ownership and holdings information |
alpha_intelligence |
| Advanced analytics over fixed windows |
alpha_intelligence |
| Advanced analytics over sliding windows |
FUNDAMENTAL_DATA
Category | Tool | Description |
fundamental_data |
| Company information, financial ratios, and metrics |
fundamental_data |
| Annual and quarterly income statements |
fundamental_data |
| Annual and quarterly balance sheets |
fundamental_data |
| Annual and quarterly cash flow statements |
fundamental_data |
| Annual and quarterly earnings data |
fundamental_data |
| Listing and delisting data for equities |
fundamental_data |
| Earnings calendar for upcoming earnings |
fundamental_data |
| Initial public offering calendar |
fundamental_data |
| Company logo URLs in PNG and SVG formats |
FOREX
Category | Tool | Description |
forex |
| Intraday foreign exchange rates |
forex |
| Daily foreign exchange rates |
forex |
| Weekly foreign exchange rates |
forex |
| Monthly foreign exchange rates |
CRYPTOCURRENCIES
Category | Tool | Description |
cryptocurrencies |
| Exchange rate between digital/crypto currencies |
cryptocurrencies |
| Intraday time series for digital currencies |
cryptocurrencies |
| Daily time series for digital currencies |
cryptocurrencies |
| Weekly time series for digital currencies |
cryptocurrencies |
| Monthly time series for digital currencies |
COMMODITIES
Category | Tool | Description |
commodities |
| West Texas Intermediate (WTI) crude oil prices |
commodities |
| Brent crude oil prices |
commodities |
| Henry Hub natural gas spot prices |
commodities |
| Global copper prices |
commodities |
| Global aluminum prices |
commodities |
| Global wheat prices |
commodities |
| Global corn prices |
commodities |
| Global cotton prices |
commodities |
| Global sugar prices |
commodities |
| Global coffee prices |
commodities |
| Live spot prices for gold and silver |
commodities |
| Historical gold and silver prices (daily, weekly, monthly) |
commodities |
| All commodities prices |
ECONOMIC_INDICATORS
Category | Tool | Description |
economic_indicators |
| Real Gross Domestic Product |
economic_indicators |
| Real GDP per capita |
economic_indicators |
| Daily treasury yield rates |
economic_indicators |
| Federal funds rate (interest rates) |
economic_indicators |
| Consumer Price Index |
economic_indicators |
| Inflation rates |
economic_indicators |
| Retail sales data |
economic_indicators |
| Durable goods orders |
economic_indicators |
| Unemployment rate |
economic_indicators |
| Non-farm payroll data |
TECHNICAL_INDICATORS
Category | Tool | Description |
technical_indicators |
| Simple moving average (SMA) values |
technical_indicators |
| Exponential moving average (EMA) values |
technical_indicators |
| Weighted moving average (WMA) values |
technical_indicators |
| Double exponential moving average (DEMA) values |
technical_indicators |
| Triple exponential moving average (TEMA) values |
technical_indicators |
| Triangular moving average (TRIMA) values |
technical_indicators |
| Kaufman adaptive moving average (KAMA) values |
technical_indicators |
| MESA adaptive moving average (MAMA) values |
technical_indicators |
| Volume weighted average price (VWAP) for intraday time series |
technical_indicators |
| Triple exponential moving average (T3) values |
technical_indicators |
| Moving average convergence / divergence (MACD) values |
technical_indicators |
| Moving average convergence / divergence values with controllable moving average type |
technical_indicators |
| Stochastic oscillator (STOCH) values |
technical_indicators |
| Stochastic fast (STOCHF) values |
technical_indicators |
| Relative strength index (RSI) values |
technical_indicators |
| Stochastic relative strength index (STOCHRSI) values |
technical_indicators |
| Williams' %R (WILLR) values |
technical_indicators |
| Average directional movement index (ADX) values |
technical_indicators |
| Average directional movement index rating (ADXR) values |
technical_indicators |
| Absolute price oscillator (APO) values |
technical_indicators |
| Percentage price oscillator (PPO) values |
technical_indicators |
| Momentum (MOM) values |
technical_indicators |
| Balance of power (BOP) values |
technical_indicators |
| Commodity channel index (CCI) values |
technical_indicators |
| Chande momentum oscillator (CMO) values |
technical_indicators |
| Rate of change (ROC) values |
technical_indicators |
| Rate of change ratio (ROCR) values |
technical_indicators |
| Aroon (AROON) values |
technical_indicators |
| Aroon oscillator (AROONOSC) values |
technical_indicators |
| Money flow index (MFI) values |
technical_indicators |
| 1-day rate of change of a triple smooth exponential moving average (TRIX) values |
technical_indicators |
| Ultimate oscillator (ULTOSC) values |
technical_indicators |
| Directional movement index (DX) values |
technical_indicators |
| Minus directional indicator (MINUS_DI) values |
technical_indicators |
| Plus directional indicator (PLUS_DI) values |
technical_indicators |
| Minus directional movement (MINUS_DM) values |
technical_indicators |
| Plus directional movement (PLUS_DM) values |
technical_indicators |
| Bollinger bands (BBANDS) values |
technical_indicators |
| Midpoint values - (highest value + lowest value)/2 |
technical_indicators |
| Midpoint price values - (highest high + lowest low)/2 |
technical_indicators |
| Parabolic SAR (SAR) values |
technical_indicators |
| True range (TRANGE) values |
technical_indicators |
| Average true range (ATR) values |
technical_indicators |
| Normalized average true range (NATR) values |
technical_indicators |
| Chaikin A/D line (AD) values |
technical_indicators |
| Chaikin A/D oscillator (ADOSC) values |
technical_indicators |
| On balance volume (OBV) values |
technical_indicators |
| Hilbert transform, instantaneous trendline (HT_TRENDLINE) values |
technical_indicators |
| Hilbert transform, sine wave (HT_SINE) values |
technical_indicators |
| Hilbert transform, trend vs cycle mode (HT_TRENDMODE) values |
technical_indicators |
| Hilbert transform, dominant cycle period (HT_DCPERIOD) values |
technical_indicators |
| Hilbert transform, dominant cycle phase (HT_DCPHASE) values |
technical_indicators |
| Hilbert transform, phasor components (HT_PHASOR) values |
PING
Category | Tool | Description |
ping |
| Health check tool that returns 'pong' |
ping |
| Example tool for adding two numbers |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server providing real-time stock data and options analysis through Yahoo Finance, enabling LLMs to access market data, analyze stocks, and evaluate options strategies.25MIT
- Alicense-qualityDmaintenanceProvides real-time financial data from Yahoo Finance to Large Language Models through the Model Context Protocol, enabling AI models to access stock prices, historical data, and company information.1MIT
- AlicenseAqualityCmaintenanceProvides access to real-time stock prices, financial statements, news, and options data via the Model Context Protocol. It enables AI assistants to retrieve comprehensive market data, including historical prices and analyst recommendations, through a standardized interface.691MIT
- AlicenseAqualityBmaintenanceReal-time stock & crypto market data for LLMs, over the Model Context Protocol.4MIT
Related MCP Connectors
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Pre-computed market data that improves agent reasoning, reduces token usage, and replaces pipelines.
Live financial data MCP: FX, crypto, stocks, news, URL reader. x402 on Base: $0.001/call.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alphavantage/alpha_vantage_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server