> ## Documentation Index
> Fetch the complete documentation index at: https://docs.byul.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# news_fetch

> MCP tool to fetch the latest financial news (proxies GET /news)

## Description

`news_fetch` proxies Byul's `GET /news`. Parameters are identical to the REST API.

## Parameters

<ParamField query="limit" type="integer" default="10">Number of articles (1-100)</ParamField>
<ParamField query="cursor" type="string">Pagination cursor</ParamField>
<ParamField query="sinceId" type="string">Articles created after this ID</ParamField>
<ParamField query="minImportance" type="integer" default="1">Minimum importance (1-10)</ParamField>
<ParamField query="q" type="string">Search query</ParamField>
<ParamField query="symbol" type="string">Stock symbol</ParamField>
<ParamField query="startDate" type="string">Start time (ISO 8601, UTC)</ParamField>
<ParamField query="endDate" type="string">End time (ISO 8601, UTC)</ParamField>

## Request/Response Examples

<RequestExample>
  ```txt MCP Call theme={null}
  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"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "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
    }
  }
  ```
</ResponseExample>

<Tip>
  The `payload` structure matches the REST API `GET /news` response.
</Tip>
