search_papers
Search for academic papers using a specific query across multiple sources. Retrieve metadata, abstracts, and full-text content, with results limited to a specified number for structured, real-time access.
Instructions
Search for papers across multiple sources.
args:
query: the search query
limit: the maximum number of results to return (default 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_papersArguments",
"type": "object"
}