search_papers_by_keyword
Search academic papers using keywords to find relevant research publications. Filter results by publication year or citation count and browse through paginated results for efficient research discovery.
Instructions
Search academic papers by keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | Search keyword | |
order | No | Sort order: year (by publication year) or n_citation (by citation count) | |
page | No | Page number, starting from 0 | |
size | No | Number of papers per page, maximum 10 |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "Search keyword",
"type": "string"
},
"order": {
"description": "Sort order: year (by publication year) or n_citation (by citation count)",
"enum": [
"year",
"n_citation"
],
"type": "string"
},
"page": {
"default": 0,
"description": "Page number, starting from 0",
"minimum": 0,
"type": "number"
},
"size": {
"default": 10,
"description": "Number of papers per page, maximum 10",
"maximum": 10,
"minimum": 1,
"type": "number"
}
},
"required": [
"keyword"
],
"type": "object"
}