news
Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp
News feed.
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
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":{}}}'
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.