av_quote
Pack: alphavantage · Endpoint: https://gateway.pipeworx.io/alphavantage/mcp
Get real-time stock price for a symbol (e.g., “AAPL”). Returns current price, change, percent change, and trading volume.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Alpha Vantage API key |
symbol | string | yes | Stock ticker symbol (e.g., “SOFI”, “AFRM”, “SQ”, “PYPL”) |
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_quote","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_quote', {
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
});
More examples
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "SOFI"
}
Response shape
Always returns: symbol
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
open | string | null | Opening price |
high | string | null | Daily high price |
low | string | null | Daily low price |
price | string | null | Current trading price |
volume | string | null | Trading volume |
latest_trading_day | string | null | Latest trading day date |
previous_close | string | null | Previous close price |
change | string | null | Price change in dollars |
change_percent | string | null | Price change as percentage |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Stock ticker symbol"
},
"open": {
"type": [
"string",
"null"
],
"description": "Opening price"
},
"high": {
"type": [
"string",
"null"
],
"description": "Daily high price"
},
"low": {
"type": [
"string",
"null"
],
"description": "Daily low price"
},
"price": {
"type": [
"string",
"null"
],
"description": "Current trading price"
},
"volume": {
"type": [
"string",
"null"
],
"description": "Trading volume"
},
"latest_trading_day": {
"type": [
"string",
"null"
],
"description": "Latest trading day date"
},
"previous_close": {
"type": [
"string",
"null"
],
"description": "Previous close price"
},
"change": {
"type": [
"string",
"null"
],
"description": "Price change in dollars"
},
"change_percent": {
"type": [
"string",
"null"
],
"description": "Price change as percentage"
}
},
"required": [
"symbol"
]
}
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.