arxiv_search
Search arXiv for academic papers using field-specific queries and boolean operators. Returns paginated results with titles, authors, abstracts, and direct links.
Instructions
Search arXiv for academic papers using full query syntax.
Supports field-specific search and boolean operators. Returns paginated results with title, authors, abstract snippet, and direct links.
Args: params (SearchInput): - query (str): Query string, e.g. 'ti:attention AND cat:cs.LG' - max_results (int): Results per page (1 - 50, default 10) - start (int): Pagination offset (default 0) - sort_by (str): relevance | lastUpdatedDate | submittedDate - sort_order (str): descending | ascending - response_format (str): markdown | json
Returns: str: Paginated list of matching papers with metadata and links.
JSON schema when response_format='json':
{
"total": int,
"count": int,
"start": int,
"has_more": bool,
"next_start": int | null,
"papers": [{ "id", "title", "authors", "abstract", "published",
"updated", "primary_category", "categories",
"abstract_url", "pdf_url", "html_url",
"comment", "journal_ref", "doi" }]
}Examples: - 'ti:large language model AND cat:cs.LG' — LLM papers in ML - 'au:lecun AND cat:cs.CV' — LeCun's vision papers - 'abs:diffusion AND abs:image generation' — diffusion image gen - 'ti:attention is all you need' — search by title phrase
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |