splits
Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp
Historical stock splits for a US-listed Polygon.io ticker: split ratio, execution date, ticker. Use to adjust historical price comparisons across split events.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | no | |
execution_date | string | no | |
limit | number | no |
Example call
Arguments
{
"ticker": "AAPL",
"limit": 10
}
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":"splits","arguments":{"ticker":"AAPL","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('splits', {
"ticker": "AAPL",
"limit": 10
});
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
results | array | Stock splits data |
count | number | Number of results |
next_url | string | Next page URL if available |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "API response status"
},
"results": {
"type": "array",
"description": "Stock splits data",
"items": {
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Ticker symbol"
},
"execution_date": {
"type": "string",
"description": "Execution date"
},
"split_from": {
"type": "number",
"description": "Split from ratio"
},
"split_to": {
"type": "number",
"description": "Split to ratio"
}
}
}
},
"count": {
"type": "number",
"description": "Number of results"
},
"next_url": {
"type": "string",
"description": "Next page URL if available"
}
}
}
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.