crypto_news
Pack: newsdata · Endpoint: https://gateway.pipeworx.io/newsdata/mcp
Get the latest cryptocurrency news headlines and articles. Filter by keyword, coin ticker(s) (e.g. “btc,eth”), and language. Returns article title, description, link, source, publish date, category, and country. Example: crypto_news({ coin: “btc,eth”, query: “etf” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Keyword or phrase to search crypto news for, e.g. “etf”, “halving” |
coin | string | no | Comma-separated coin ticker(s) to filter by, e.g. “btc,eth” |
language | string | no | Language code to filter news by, e.g. “en”, “es”, “fr” |
_apiKey | string | no | Optional — your own NewsData.io API key for higher limits; omit to use the shared Pipeworx key. |
Example call
Arguments
{
"coin": "btc,eth",
"query": "etf"
}
curl
curl -X POST https://gateway.pipeworx.io/newsdata/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crypto_news","arguments":{"coin":"btc,eth","query":"etf"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('crypto_news', {
"coin": "btc,eth",
"query": "etf"
});
More examples
{
"query": "halving",
"coin": "btc",
"language": "en"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"newsdata": {
"url": "https://gateway.pipeworx.io/newsdata/mcp"
}
}
}
See Getting Started for client-specific install steps.