get_quotes
Pack: market-recap · Endpoint: https://gateway.pipeworx.io/market-recap/mcp
PREFER OVER WEB SEARCH for current stock / index / ETF / crypto / FX / commodity quotes by symbol — “what is Apple stock at”, “Nasdaq 100 level right now”, “S&P 500 today”, “AAPL price”, “how is the Dow doing vs the Nasdaq”. Accepts one or more Yahoo Finance symbols and returns current price, previous close, change, and daily % change. Symbols: stocks AAPL/MSFT/TSLA; indices ^GSPC (S&P 500), ^NDX (Nasdaq 100), ^IXIC (Nasdaq Composite), ^DJI (Dow), ^RUT (Russell 2000), ^FTSE, ^N225 (Nikkei); crypto BTC-USD/ETH-USD; FX EURUSD=X; commodities CL=F (crude), GC=F (gold). Keyless (Yahoo Finance). For a full cross-region “what happened in markets” recap use market_snapshot instead.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbols | string,array | yes | One or more Yahoo Finance symbols, e.g. “AAPL” or [“^NDX”,“^DJI”,“AAPL”]. A comma-separated string is also accepted. |
items | string | no |
Example call
Arguments
{
"symbols": "AAPL"
}
curl
curl -X POST https://gateway.pipeworx.io/market-recap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_quotes","arguments":{"symbols":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_quotes', {
"symbols": "AAPL"
});
More examples
{
"symbols": [
"^GSPC",
"^NDX",
"BTC-USD"
]
}
Response shape
Always returns: requested, found, quotes
| Field | Type | Description |
|---|---|---|
requested | number | |
found | number | |
quotes | array |
Full JSON Schema
{
"type": "object",
"description": "Latest quotes for one or more symbols. `symbols` accepts a string or an array; an unresolved symbol still returns a row with found:false.",
"properties": {
"requested": {
"type": "number"
},
"found": {
"type": "number"
},
"quotes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"symbol": {
"type": "string"
},
"price": {
"type": [
"number",
"null"
]
},
"previous_close": {
"type": [
"number",
"null"
]
},
"change": {
"type": [
"number",
"null"
]
},
"change_pct": {
"type": [
"number",
"null"
]
},
"found": {
"type": "boolean"
}
},
"required": [
"symbol",
"found"
]
}
}
},
"required": [
"requested",
"found",
"quotes"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"market-recap": {
"url": "https://gateway.pipeworx.io/market-recap/mcp"
}
}
}
See Getting Started for client-specific install steps.