Description
news_fetch
proxies Byul’s GET /news
. Parameters are identical to the REST API.
Parameters
Number of articles (1-100)
Articles created after this ID
Minimum importance (1-10)
Start time (ISO 8601, UTC)
Request/Response Examples
tools.call name="news_fetch" params={
"limit": 20,
"minImportance": 5,
"symbol": "AAPL",
"startDate": "2024-01-01T00:00:00.000Z",
"endDate": "2024-01-31T23:59:59.999Z"
}
{
"summary": "Returned 20 articles",
"payload": {
"items": [
{ "_id": "67850d7b0123456789abcdef", "title": "Intel Announces New AI Chip Partnership", "content": "Intel Corporation announced a strategic partnership with Microsoft to develop next-generation AI chips for data centers. The collaboration will focus on optimizing AI workloads and improving energy efficiency in cloud computing infrastructure.", "koContent": "인텔 코포레이션이 마이크로소프트와 다음 세대 AI 칩 개발을 위한 전략적 파트너십을 발표했습니다. 이번 협력은 AI 워크로드 최적화와 클라우드 컴퓨팅 인프라의 에너지 효율성 향상에 중점을 둘 예정입니다.", "importanceScore": 8 }
],
"nextCursor": "67850d7b0123456789abcde0",
"hasMore": true
}
}
The payload
structure matches the REST API GET /news
response.