grouped_daily
Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp
Fetch OHLCV bars for all US stocks on a given date (YYYY-MM-DD) from Polygon.io in a single call; useful for market-wide snapshot or screening.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | |
adjusted | boolean | no |
Example call
Arguments
{
"date": "2024-01-15"
}
curl
curl -X POST https://gateway.pipeworx.io/polygon-io/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"grouped_daily","arguments":{"date":"2024-01-15"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('grouped_daily', {
"date": "2024-01-15"
});
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
results | array | Daily data for all tickers |
count | number | Number of results |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "API response status"
},
"results": {
"type": "array",
"description": "Daily data for all tickers",
"items": {
"type": "object",
"properties": {
"T": {
"type": "string",
"description": "Ticker symbol"
},
"c": {
"type": "number",
"description": "Close price"
},
"h": {
"type": "number",
"description": "High price"
},
"l": {
"type": "number",
"description": "Low price"
},
"o": {
"type": "number",
"description": "Open price"
},
"v": {
"type": "number",
"description": "Volume"
},
"vw": {
"type": "number",
"description": "Volume weighted average"
},
"t": {
"type": "number",
"description": "Timestamp"
},
"n": {
"type": "number",
"description": "Number of transactions"
}
}
}
},
"count": {
"type": "number",
"description": "Number of results"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"polygon-io": {
"url": "https://gateway.pipeworx.io/polygon-io/mcp"
}
}
}
See Getting Started for client-specific install steps.