get_articles
Fetch articles from GeekNews by specifying type (top, new, ask, show) and limit (up to 30). Returns structured article lists for streamlined access.
Instructions
GeekNews에서 아티클을 가져오는 도구
Args:
type: 아티클 유형 (top, new, ask, show)
limit: 반환할 아티클 수 (최대 30)
Returns:
List[Dict[str, Any]]: 아티클 목록
Raises:
ValueError: 유효하지 않은 아티클 유형이 지정된 경우
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
type | No | top |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"type": {
"default": "top",
"title": "Type",
"type": "string"
}
},
"title": "get_articlesArguments",
"type": "object"
}