av_daily
Pack: alphavantage · Endpoint: https://gateway.pipeworx.io/alphavantage/mcp
Get daily stock price history for a symbol (e.g., “AAPL”). Returns open, high, low, close, volume for recent days or full 20+ year history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Alpha Vantage API key |
symbol | string | yes | Stock ticker symbol (e.g., “AAPL”, “MSFT”) |
outputsize | string | no | ”compact” for last 100 data points (default), “full” for 20+ years of data |
Example call
Arguments
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
}
curl
curl -X POST https://gateway.pipeworx.io/alphavantage/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"av_daily","arguments":{"_apiKey":"your-alphavantage-api-key","symbol":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('av_daily', {
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
});
More examples
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "MSFT",
"outputsize": "full"
}
Response shape
Always returns: symbol, outputsize, data_points, time_series
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
last_refreshed | string | null | Last refresh timestamp |
outputsize | string | Size of data returned (compact or full) |
data_points | integer | Number of daily data points |
time_series | array | Array of daily price data |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Stock ticker symbol"
},
"last_refreshed": {
"type": [
"string",
"null"
],
"description": "Last refresh timestamp"
},
"outputsize": {
"type": "string",
"description": "Size of data returned (compact or full)"
},
"data_points": {
"type": "integer",
"description": "Number of daily data points"
},
"time_series": {
"type": "array",
"description": "Array of daily price data",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Trading date"
},
"open": {
"type": [
"string",
"null"
],
"description": "Opening price"
},
"high": {
"type": [
"string",
"null"
],
"description": "High price"
},
"low": {
"type": [
"string",
"null"
],
"description": "Low price"
},
"close": {
"type": [
"string",
"null"
],
"description": "Closing price"
},
"volume": {
"type": [
"string",
"null"
],
"description": "Trading volume"
}
},
"required": [
"date"
]
}
}
},
"required": [
"symbol",
"outputsize",
"data_points",
"time_series"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alphavantage": {
"url": "https://gateway.pipeworx.io/alphavantage/mcp"
}
}
}
See Getting Started for client-specific install steps.