search_papers_advanced
Search academic papers using keywords, authors, venues, and filter by publication year or citation count to find relevant research.
Instructions
Advanced paper search functionality supporting multiple search criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | Author name | |
keyword | No | 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 | |
venue | No | Venue/journal name |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"description": "Author name",
"type": "string"
},
"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"
},
"venue": {
"description": "Venue/journal name",
"type": "string"
}
},
"type": "object"
}