alphavantage

Alpha Vantage MCPサーバーは、株式市場データAPIであるAlphavantage APIのためのMCPサーバーです。このツールは、Pythonで実装されており、リアルタイムの株式データを取得するための便利なインターフェースを提供します。ユーザーは、Alphavantage APIキーを取得し、環境変数に設定することで、簡単にサーバーを起動し、データを取得することができます。標準のstdioサーバーモードと、HTTPストリーミングを提供するストリーム可能なサーバーモードの2つのモードで動作します。

GitHubスター

49

ユーザー評価

未評価

フォーク

18

イシュー

0

閲覧数

1

お気に入り

0

README
✅ Official Alpha Vantage MCP Server

smithery badge Verified on MseeP

A MCP server for the stock market data API, Alphavantage API.

Configuration
Getting an API Key
  1. Sign up for a Free Alphavantage API key
  2. Add the API key to your environment variables as ALPHAVANTAGE_API_KEY
Clone the project
git clone https://github.com/calvernaz/alphavantage.git
Server Modes

The AlphaVantage server can run in two different modes:

Stdio Server (Default)

This is the standard MCP server mode used for tools like Claude Desktop.

alphavantage
# or explicitly:
alphavantage --server stdio
Streamable HTTP Server

This mode provides real-time updates via HTTP streaming.

alphavantage --server http --port 8080

Options:

  • --server: Choose between stdio (default) or http server mode
  • --port: Specify the port for the Streamable HTTP server (default: 8080)
Usage with Claude Desktop

Add this to your claude_desktop_config.json:

NOTE Make sure you replace the <DIRECTORY-OF-CLONED-PROJECT> with the directory of the cloned project.

{
  "mcpServers": {
    "alphavantage": {
      "command": "uv",
      "args": [
        "--directory",
        "<DIRECTORY-OF-CLONED-PROJECT>/alphavantage",
        "run",
        "alphavantage"
      ],
      "env": {
        "ALPHAVANTAGE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
Running the Server in Streamable HTTP Mode
{
  "mcpServers": {
    "alphavantage": {
      "command": "uv",
      "args": [
        "--directory",
        "<DIRECTORY-OF-CLONED-PROJECT>/alphavantage",
        "run",
        "alphavantage",
        "--server",
        "http",
        "--port",
        "8080"
      ],
      "env": {
        "ALPHAVANTAGE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
📺 Demo Video

Watch a quick demonstration of the Alpha Vantage MCP Server in action:

Alpha Vantage MCP Server Demo

🤝 Contributing

We welcome contributions from the community! To get started, check out our contribution guide for setup instructions, development tips, and guidelines.

作者情報
Cesar Alvernaz

OSS contributor. Director @weirdloop

weirdloopDublin, Ireland

32

フォロワー

35

リポジトリ

17

Gist

46

貢献数

トップ貢献者

スレッド