ArXiv Scout

arxiv_search_papers

Search arXiv for papers using advanced query syntax.

Remote shawnnygoh/arxiv-scout

Other tools also called arxiv_search_papers? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search keywords or structured arXiv query string (e.g., 'au:vaswani AND ti:attention')."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "description": "The number of search results to skip, used for paginating through large result sets."
    },
    "date_to": {
      "type": "string",
      "description": "Filter results to papers published on or before this date (format: YYYY-MM-DD)."
    },
    "sort_by": {
      "enum": [
        "relevance",
        "submitted_date",
        "last_updated"
      ],
      "type": "string",
      "default": "relevance",
      "description": "The criteria used to order the search results."
    },
    "date_from": {
      "type": "string",
      "description": "Filter results to papers published on or after this date (format: YYYY-MM-DD)."
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "A list of arXiv category codes (e.g., 'cs.LG') or natural language subject names to filter by."
    },
    "max_results": {
      "type": "integer",
      "default": 10,
      "description": "The maximum number of papers to return in the results list (up to 50)."
    },
    "output_format": {
      "enum": [
        "markdown",
        "json"
      ],
      "type": "string",
      "default": "markdown",
      "description": "The desired format for the tool's response output."
    }
  }
}