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

NameTypeRequiredDescription
_apiKeystringyesAlpha Vantage API key
symbolstringyesStock 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

FieldTypeDescription
symbolstringStock ticker symbol
openstring | nullOpening price
highstring | nullDaily high price
lowstring | nullDaily low price
pricestring | nullCurrent trading price
volumestring | nullTrading volume
latest_trading_daystring | nullLatest trading day date
previous_closestring | nullPrevious close price
changestring | nullPrice change in dollars
change_percentstring | nullPrice 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.

Regenerated from source · build May 9, 2026