news

Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp

News feed.

Parameters

NameTypeRequiredDescription
langstringno
sortOrderstringno
lTsnumberno
feedsstringno
categoriesstringno
excludeCategoriesstringno

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

FieldTypeDescription
DataarrayArray 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.

Regenerated from source · build May 21, 2026