Alpha Vantage MCP Server

A Model Context Protocol (MCP) server that provides real-time access to financial market data through the free [Alpha Vantage

Local serverstdioPython

What is the Alpha Vantage MCP MCP server?

Alpha Vantage MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Alpha Vantage MCP directly instead of describing what you should do. A Model Context Protocol (MCP) server that provides real-time access to financial market data through the free Alpha Vantage API. This server implements a standardized interface for retrieving.

What you get

  • Real-time stock quotes with price, volume, and change data
  • Detailed company information including sector, industry, and market cap
  • Real-time cryptocurrency exchange rates with bid/ask prices
  • Historical options chain data with advanced filtering and sorting
  • Built-in error handling and rate limit management

Setting it up

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Alpha Vantage MCP is connected, these are the calls the assistant has available:

  • get-stock-quote — Get the latest stock quote for a specific company
  • get-company-info — Get stock-related information for a specific company
  • get-crypto-exchange-rate — Get current cryptocurrency exchange rates
  • get-time-series — Get historical daily price data for a stock
  • get-historical-options — Get historical options chain data with sorting capabilities
  • Running — After connecting Claude client with the MCP tool via json file and installing the packages, Claude should see the server's mcp tools:

Configuration and credentials

You will need 2 environment variables: ALPHA_VANTAGE_API_KEY, REPLACE_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.12 or higher - httpx - mcp

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the alpha vantage mcp mcp server does with a few real requests.

Choosing this one

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Alpha Vantage MCP's toolset — get-stock-quote, get-company-info, get-crypto-exchange-rate and 3 more — is a fair guide to whether it matches your workflow. It is maintained by QuantML-Github; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Alpha Vantage MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
get-stock-quoteGet the latest stock quote for a specific company
get-company-infoGet stock-related information for a specific company
get-crypto-exchange-rateGet current cryptocurrency exchange rates
get-time-seriesGet historical daily price data for a stock
get-historical-optionsGet historical options chain data with sorting capabilities
RunningAfter connecting Claude client with the MCP tool via json file and installing the packages, Claude should see the server's mcp tools:

How to install the Alpha Vantage MCP MCP server

{
  "mcpServers": {
    "alpha-vantage": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "ALPHA_VANTAGE_API_KEY": "your-value",
        "REPLACE_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Python 3.12 or higher - httpx - mcp
VariableDescriptionRequired
ALPHA_VANTAGE_API_KEYCredential the server authenticates with.Yes
REPLACE_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Alpha Vantage MCP to get-stock-quote.
  • Use Alpha Vantage MCP to get-company-info.
  • Use Alpha Vantage MCP to get-crypto-exchange-rate.

Frequently asked questions

It connects Alpha Vantage MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (get-stock-quote, get-company-info, get-crypto-exchange-rate, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Alpha Vantage MCP directly.