Arxiv Xplorer Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Arxiv Xplorer Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Simple CLI tool and MCP server for searching arXiv papers via ArXiv Xplorer API.
# Using pip
pip install -e .
# Using uv
uv pip install -e .
# Or from GitHub
pip install git+https://github.com/hassenhamdi/arxiv-xplorer-mcp.git# Basic search
arxiv-search "large language models"
# With categories
arxiv-search "transformer" -c cs.CL cs.AI
# With years
arxiv-search "neural networks" -y 2023 2024
# Pagination
arxiv-search "attention" -p 2
# JSON output
arxiv-search "BERT" --json| Option | Description |
|---|---|
query | Search terms (required) |
-c, --categories | arXiv categories (e.g., cs.CL, cs.AI) |
-y, --years | Publication years (e.g., 2023 2024) |
-p, --page | Page number (default: 1) |
--json | Output raw JSON |
| Code | Description |
|---|---|
| cs.CL | Computation and Language (NLP) |
| cs.AI | Artificial Intelligence |
| cs.CV | Computer Vision |
| cs.LG | Machine Learning |
| cs.RO | Robotics |
| cs.CR | Cryptography and Security |
Claude Desktop / Cline / OpenCode:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["-m", "arxiv_search.mcp_server"],
"cwd": "/path/to/arxiv_search"
}
}
}Search arXiv papers with filters.
Parameters:
query (string, required): Search termscategories (list, optional): arXiv categoriesyears (list, optional): Publication yearspage (integer, optional): Page number (default: 1)Returns: List of papers with fields: id, title, abstract, authors, date, categories, short_author, score, url
# Install dev dependencies
pip install -e ".[dev]"
# Run CLI
python arxiv.py "query"
# Run MCP server
python -m arxiv_search.mcp_serverPersonal Use Only - See LICENSE file
Uses reverse-engineered API from arxivxplorer.com (unofficial)
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.