marketdata_stock_quote

Pack: marketdata-app · Endpoint: https://gateway.pipeworx.io/marketdata-app/mcp

Get a live/delayed stock quote: bid/ask/mid/last, absolute + percent change, and session volume. Example: marketdata_stock_quote({ symbol: “AAPL”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
symbolstringyesStock ticker symbol, e.g. “AAPL”, “MSFT”, “SPY”.
fiftyTwoWeekbooleannoInclude 52-week high/low in the response. Optional.
_apiKeystringyesMarket Data App API token. Get one at ${SIGNUP_URL}

Example call

Arguments

{
  "symbol": "AAPL",
  "_apiKey": "your-marketdata-app-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/marketdata-app/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marketdata_stock_quote","arguments":{"symbol":"AAPL","_apiKey":"your-marketdata-app-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('marketdata_stock_quote', {
  "symbol": "AAPL",
  "_apiKey": "your-marketdata-app-api-key"
});

More examples

{
  "symbol": "TSLA",
  "fiftyTwoWeek": true,
  "_apiKey": "your-marketdata-app-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "marketdata-app": {
      "url": "https://gateway.pipeworx.io/marketdata-app/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026