tavily_news
Pack: tavily · Endpoint: https://gateway.pipeworx.io/tavily/mcp
Recent NEWS coverage with FULL ARTICLE TEXT — “latest news about <company/person/topic>”, “news coverage of X this week”, “what are people reporting about X”, “recent headlines on X”. Returns a synthesized answer plus ranked articles each carrying title, url, publication content, and a relevance score — the full text, not just a headline, so the calling agent can quote and cite. Freshness-windowed via days (default 7). This is the premium news path (Tavily, funded key, no per-IP throttle, no shared free-tier quota); prefer it when the question asks what is being REPORTED about a specific entity or topic.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | The entity or topic to get news about, e.g. “Anthropic”, “GLP-1 drug pricing”. |
days | number | no | How many days back to search (default 7, max 30). |
max_results | number | no | Maximum number of articles (default 5, max 20). |
_apiKey | string | no | Optional — your own Tavily API key for higher limits; omit to use the shared Pipeworx key. |
Example call
Arguments
{
"query": "Anthropic"
}
curl
curl -X POST https://gateway.pipeworx.io/tavily/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tavily_news","arguments":{"query":"Anthropic"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tavily_news', {
"query": "Anthropic"
});
More examples
{
"query": "GLP-1 drug pricing",
"days": 14,
"max_results": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tavily": {
"url": "https://gateway.pipeworx.io/tavily/mcp"
}
}
}
See Getting Started for client-specific install steps.