Hive Intelligence - Crypto MCP Server

Search Crypto News

AI-powered search for cryptocurrency news from trusted, authoritative sources.

Tool Name: exa_search_crypto_news

MCP Endpoint: POST /hive_web_search/mcp

Data Source: Exa AI (Neural Search)


Overview

Search crypto news with neural AI that understands context and meaning:

  • Trusted sources only: CoinDesk, Cointelegraph, The Block, Decrypt, Bitcoin Magazine
  • Semantic search: Understands intent, not just keywords
  • Date filtering: Search within specific time ranges
  • High relevance: AI-ranked results based on query understanding

Parameters

ParameterTypeRequiredDescription
querystringYesSearch query (e.g., "Bitcoin ETF approval")
num_resultsnumberNoResults to return (default: 10, max: 100)
start_published_datestringNoStart date filter (ISO: "2024-01-01")
end_published_datestringNoEnd date filter

Examples

curl -X POST https://api.hiveintelligence.xyz/api/execute \
  -H "Content-Type: application/json" \
  -d '{
    "toolName": "exa_search_crypto_news",
    "arguments": {
      "query": "Bitcoin ETF institutional adoption",
      "num_results": 10
    }
  }'

Python - News Monitor

import requests
from datetime import datetime, timedelta

def search_crypto_news(query, days_back=7, num_results=20):
    start_date = (datetime.now() - timedelta(days=days_back)).strftime("%Y-%m-%d")

    response = requests.post(
        "https://api.hiveintelligence.xyz/api/execute",
        json={
            "toolName": "exa_search_crypto_news",
            "arguments": {
                "query": query,
                "num_results": num_results,
                "start_published_date": start_date
            }
        }
    )
    return response.json()

# Monitor Bitcoin ETF news
news = search_crypto_news("Bitcoin ETF flows institutional")
for article in news.get("results", []):
    print(f"- {article['title']}")
    print(f"  {article['url']}")

Trusted Sources

SourceCoverage
CoinDeskBreaking news, market analysis
CointelegraphGlobal crypto news
The BlockResearch, data journalism
DecryptNews, guides, reviews
Bitcoin MagazineBitcoin-focused news