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
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Stock ticker symbol, e.g. “AAPL”, “MSFT”, “SPY”. |
fiftyTwoWeek | boolean | no | Include 52-week high/low in the response. Optional. |
_apiKey | string | yes | Market Data App API token. Get one at ${SIGNUP_URL} |
Example call
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":{}}}'
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.