search_news
Pack: currents · Endpoint: https://gateway.pipeworx.io/currents/mcp
Search global news by keyword across Currents (70k+ sources). Filter by language, category, country, and date range. Example: search_news({ keywords: “artificial intelligence”, language: “en”, limit: 15 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keywords | string | yes | Search query, e.g. “climate change”, “artificial intelligence”. |
language | string | no | Two-letter language code, e.g. “en”, “es”, “fr”. Default “en”. |
category | string | no | Optional category filter, e.g. “technology”, “business”. Use list_categories to see options. |
country | string | no | Optional two-letter country code, e.g. “US”, “GB”, “FR”. |
start_date | string | no | Optional ISO 8601 start of date range, e.g. “2026-01-01T00:00:00”. |
end_date | string | no | Optional ISO 8601 end of date range, e.g. “2026-02-01T00:00:00”. |
limit | number | no | Max number of articles to return (default 15). |
_apiKey | string | no | Optional Currents API key. Omit to use the platform key. |
Example call
curl -X POST https://gateway.pipeworx.io/currents/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_news","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"currents": {
"url": "https://gateway.pipeworx.io/currents/mcp"
}
}
}
See Getting Started for client-specific install steps.