# General Arxiv Search

> Search and retrieve research papers from ArXiv API for scientific research.

- **Type:** Skill
- **Install:** `agentstack add skill-learningmatter-mit-atomisticskills-general-arxiv-search`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [learningmatter-mit](https://agentstack.voostack.com/s/learningmatter-mit)
- **Installs:** 0
- **Category:** [Search](https://agentstack.voostack.com/c/search)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [learningmatter-mit](https://github.com/learningmatter-mit)
- **Source:** https://github.com/learningmatter-mit/AtomisticSkills/tree/main/.agents/skills/general-arxiv-search
- **Website:** https://arxiv.org/abs/2605.24002

## Install

```sh
agentstack add skill-learningmatter-mit-atomisticskills-general-arxiv-search
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# ArXiv Search

## Goal
To search for and retrieve metadata (title, authors, summary, DOI, etc.) of research papers from the ArXiv database using the official ArXiv API. This skill supports keyword, author, category, and title-based searches.

## Instructions

### 1. Simple Keyword Search
Search for papers containing specific keywords across all fields (title, abstract, authors, etc.).

```bash
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py "machine learning interatomic potential" --max_results 5 --output mlip_papers.json
```

### 2. Advanced Search (Authors, Categories, Title)
Combine multiple criteria to narrow down search results.

```bash
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --authors "Ceder" --categories mtrl-sci --max_results 10 --output ceder_papers.json
```

**Supported Category Shortcuts:**
- `mtrl-sci`: cond-mat.mtrl-sci (Materials Science)
- `mes-hall`: cond-mat.mes-hall (Mesoscale and Nanoscale Physics)
- `comp-phys`: physics.comp-ph (Computational Physics)
- `chem-phys`: physics.chem-ph (Chemical Physics)
- `ml`: cs.LG (Machine Learning)
- `ai`: cs.AI (Artificial Intelligence)

### 3. Search in Title
Restrict the search to only the paper titles.

```bash
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --title "perovskite stability" --max_results 5
```

## Examples

### Retrieval of Recent MACE Related Papers
```bash
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py "MACE force field" --max_results 3 --output mace_results.json
```

### Searching for Specific Authors in Materials Science
```bash
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --authors "Boris Kozinsky" --categories mtrl-sci --max_results 5
```

## Constraints
- **Rate Limiting**: The ArXiv API requires a minimum of 3 seconds between requests. This script includes a small delay, but frequent calls should be avoided.
- **Environment**: Requires `base-agent` conda environment.
- **Dependencies**: Uses `feedparser` and `urllib`.
- **Metadata**: Results include ID, URL, Title, Authors, Summary, Publication Date, and DOI (if available).
---

**Author:** Bowen Deng
**Contact:** [GitHub @learningmatter-mit](https://github.com/learningmatter-mit)

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [learningmatter-mit](https://github.com/learningmatter-mit)
- **Source:** [learningmatter-mit/AtomisticSkills](https://github.com/learningmatter-mit/AtomisticSkills)
- **License:** MIT
- **Homepage:** https://arxiv.org/abs/2605.24002

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-learningmatter-mit-atomisticskills-general-arxiv-search
- Seller: https://agentstack.voostack.com/s/learningmatter-mit
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
