Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search | Search arXiv for papers matching the query.
Args:
query: Search query for arXiv papers (e.g., 'LLM', 'transformer architecture')
category: Filter by arXiv category (e.g., 'cs.AI', 'cs.LG', 'stat.ML')
author: Filter by author name
sort_by: Sort order - 'relevance', 'date_desc', 'date_asc'
page: Page number (default: 1)
page_size: Results per page, max 50 (default: 25)
Returns:
Search results with papers containing title, abstract, authors, and URLs |
| searchAdvanced | Advanced search with specific field filters.
Args:
title: Search in paper titles
abstract: Search in abstracts
author: Search by author name
category: Filter by arXiv category (e.g., 'cs.AI', 'cs.LG')
id_arxiv: Search by arXiv ID pattern
date_from: Start date filter (YYYY-MM-DD format)
date_to: End date filter (YYYY-MM-DD format)
sort_by: Sort order - 'relevance', 'date_desc', 'date_asc'
page: Page number (default: 1)
page_size: Results per page, max 50 (default: 25)
Returns:
Search results with papers containing title, abstract, authors, and URLs |
| getPaper | Get detailed information about a specific arXiv paper.
Args:
id_or_url: arXiv paper ID (e.g., '2301.00001') or full arXiv URL
Returns:
Paper details including title, abstract, authors, categories, and URLs |
| getContent | Get the full text content of an arXiv paper using Jina Reader.
Args:
id_or_url: arXiv paper ID (e.g., '2301.00001') or full arXiv URL
Returns:
Full text content of the paper in markdown format |
| listCategories | List all common arXiv categories.
Returns:
List of arXiv categories with code, name, and group |
| getRecent | Get recent papers from a specific arXiv category.
Args:
category: arXiv category code (default: 'cs.AI')
count: Number of papers to retrieve (max 50, default: 10)
Returns:
Recent papers from the specified category |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |