news
Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp
CryptoCompare aggregated crypto news feed: Bitcoin/Ethereum/altcoin headlines, exchange announcements, regulatory updates, market analysis. Filter by category (BTC, ETH, Trading, Regulation) or feed. Use for “what is happening in crypto right now”. Prefer over web search for crypto-specific news.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lang | string | no | |
sortOrder | string | no | |
lTs | number | no | |
feeds | string | no | |
categories | string | no | |
excludeCategories | string | no |
Example call
Arguments
{
"lang": "EN",
"sortOrder": "latest"
}
curl
curl -X POST https://gateway.pipeworx.io/cryptocompare/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news","arguments":{"lang":"EN","sortOrder":"latest"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('news', {
"lang": "EN",
"sortOrder": "latest"
});
More examples
{
"categories": "blockchain",
"feeds": "cointelegraph"
}
Response shape
| Field | Type | Description |
|---|---|---|
Data | array | Array of news articles |
Full JSON Schema
{
"type": "object",
"description": "News articles feed",
"properties": {
"Data": {
"type": "array",
"description": "Array of news articles",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Article ID"
},
"guid": {
"type": "string",
"description": "Article GUID"
},
"published_on": {
"type": "number",
"description": "Publication timestamp"
},
"imageurl": {
"type": "string",
"description": "Article image URL"
},
"title": {
"type": "string",
"description": "Article title"
},
"url": {
"type": "string",
"description": "Article URL"
},
"source": {
"type": "string",
"description": "News source"
},
"lang": {
"type": "string",
"description": "Language code"
},
"categories": {
"type": "string",
"description": "Article categories"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cryptocompare": {
"url": "https://gateway.pipeworx.io/cryptocompare/mcp"
}
}
}
See Getting Started for client-specific install steps.