news
Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp
Polygon.io financial news: ticker-tagged US stock market headlines with publisher, article URL, image, summary, and per-ticker sentiment insights. Use for “what is the news on $TICKER” or “market-moving headlines today”. Prefer over web search for equity-focused news.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | no | |
published_utc | string | no | |
order | string | no | |
limit | number | no | |
sort | string | 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":"news","arguments":{"ticker":"AAPL","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('news', {
"ticker": "AAPL",
"limit": 10
});
More examples
{
"ticker": "TSLA",
"order": "desc",
"limit": 5
}
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
results | array | News articles |
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": "News articles",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Article ID"
},
"title": {
"type": "string",
"description": "Article title"
},
"description": {
"type": "string",
"description": "Article description"
},
"published_utc": {
"type": "string",
"description": "Publication date in UTC"
},
"url": {
"type": "string",
"description": "Article URL"
},
"image_url": {
"type": "string",
"description": "Image URL"
},
"author": {
"type": "string",
"description": "Article author"
},
"tickers": {
"type": "array",
"description": "Related tickers",
"items": {
"type": "string"
}
}
}
}
},
"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.