Get conference papers
get_conference_papersRetrieve academic papers from a specific conference, optionally filtered by year. Sort results by recency or citation count, with pagination support.
Instructions
Use this when the user asks for papers from a specific conference (optionally a year), e.g. “most-cited NeurIPS 2024 papers”, “show me CCS 2025 accepted papers”, or “what's new in security at IEEE S&P this year”. sort is recency (newest first, default) or citations (most-cited first); page with limit / offset.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | `recency` (newest first, default) or `citations` (most-cited first). | recency |
| year | No | Restrict to a single year (e.g. 2024). Omit to span all years. | |
| limit | No | Max papers to return per page (default 20, max 100). | |
| offset | No | Pagination offset; use to fetch subsequent pages. | |
| conference | Yes | Conference short name, e.g. "NeurIPS", "CCS", "ICLR". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | No | Total papers at this venue matching the filters (paging count). | |
| papers | Yes | ||
| has_more | No | True when more papers exist past this page; re-call with offset += limit. |