New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@fre4x/arxiv

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fre4x/arxiv

An arXiv MCP server for searching and retrieving academic papers.

latest
npmnpm
Version
1.1.13
Version published
Maintainers
1
Created
Source

arxiv — The Research Fang

Knowledge is the only weapon that sharpens itself. This B1TE cuts through the noise.

Part of FRE4X-B1TE — a monorepo of MCP servers built for autonomous agents.

Agents sleep while humans read. This server doesn't sleep. It hunts across the entire arXiv corpus — millions of papers, every category, in real time — so the agent always knows what humans don't yet.

Tools

ToolWhat it hunts
search_papersFree-text search with field prefixes (ti:, au:, abs:, cat:) and boolean operators
get_paperFull metadata for one or more papers by arXiv ID
search_by_authorAll papers by a specific author
search_by_categoryPapers in a subject category (e.g. cs.AI, cs.LG, q-fin.TR)
list_categoriesAll supported arXiv subject categories

Query Syntax

ti:attention AND cat:cs.LG
au:Bengio AND abs:generalization
cat:cs.CV AND ti:object detection
ti:diffusion AND NOT abs:image
all:"Scaling Law limits" AND submittedDate:[20230101 TO 20261231]

All list tools support limit (max 100) and offset for pagination.
All tools support response_format: "markdown" (default) or "json".

Response Examples

search_papers

Input

{
  "query": "all:\"Scaling Law limits\" AND submittedDate:[20230101 TO 20261231]",
  "sort_by": "relevance",
  "limit": 5
}

Output (markdown)

# arXiv Search Results

Showing 5 of 42 results (offset: 0)

### 1. Scaling Laws Have Scaling Laws
**arXiv**: [2310.12345](https://arxiv.org/abs/2310.12345) | **Authors**: Alice Chen, Bob Liu et al.
**Published**: 2023-10-18 | **Category**: cs.LG
> We investigate the limits of neural scaling laws and show that scaling
> efficiency itself follows a power-law decay as model size grows beyond...

*37 more results available. Use `offset=5` to continue.*

get_paper

Input

{ "ids": ["2310.12345", "2301.07758"] }

Output (markdown)

## Scaling Laws Have Scaling Laws
**arXiv ID**: [2310.12345](https://arxiv.org/abs/2310.12345)
**Authors**: Alice Chen, Bob Liu
**Published**: 2023-10-18
**Categories**: cs.LG (Machine Learning)
**DOI**: 10.1234/example
**PDF**: https://arxiv.org/pdf/2310.12345

### Abstract

We investigate the limits of neural scaling laws and show that...

---

## A Second Paper Title
...

Output (json)

[
  {
    "arxivId": "2310.12345",
    "title": "Scaling Laws Have Scaling Laws",
    "authors": [{ "name": "Alice Chen" }, { "name": "Bob Liu" }],
    "published": "2023-10-18T00:00:00Z",
    "updated": "2023-10-20T00:00:00Z",
    "summary": "We investigate the limits of neural scaling laws...",
    "categories": [{ "term": "cs.LG" }],
    "primaryCategory": { "term": "cs.LG" },
    "pdfUrl": "https://arxiv.org/pdf/2310.12345",
    "doi": "10.1234/example",
    "journalRef": null,
    "comment": "15 pages, 8 figures",
    "links": []
  }
]

search_by_author

Input

{ "author": "Yann LeCun", "limit": 3 }

Output (markdown)

# arXiv Search Results

Showing 3 of 128 results (offset: 0)

### 1. A Path Towards Autonomous Machine Intelligence
**arXiv**: [2206.07682](https://arxiv.org/abs/2206.07682) | **Authors**: Yann LeCun
**Published**: 2022-06-27 | **Category**: cs.AI
> We propose a modular cognitive architecture for autonomous AI systems...

*125 more results available. Use `offset=3` to continue.*

search_by_category

Input

{ "category": "cs.AI", "query": "reasoning", "sort_by": "submittedDate", "limit": 3 }

Output (markdown)

# arXiv Search Results

Showing 3 of 891 results (offset: 0)

### 1. Chain-of-Thought Reasoning in Large Language Models
**arXiv**: [2401.00123](https://arxiv.org/abs/2401.00123) | **Authors**: Wei Zhang, Sara Kim et al.
**Published**: 2024-01-02 | **Category**: cs.AI
> We study emergent reasoning capabilities in LLMs and propose a new...

list_categories

Input

{ "limit": 5 }

Output (markdown)

# arXiv Subject Categories

## CS

- **cs.AI** — Artificial Intelligence
- **cs.CL** — Computation and Language (NLP)
- **cs.CV** — Computer Vision and Pattern Recognition
- **cs.LG** — Machine Learning
- **cs.NE** — Neural and Evolutionary Computing

Mock Mode

Run without any API key (returns fixture data of identical shape):

MOCK=true npx @fre4x/arxiv

Deploy

{
  "mcpServers": {
    "arxiv": {
      "command": "npx",
      "args": ["-y", "@fre4x/arxiv"]
    }
  }
}

Development

npm install
npm run dev      # tsx, no build
npm run build    # esbuild → dist/
npm test         # vitest unit tests

License

MIT — WE ARE THE FRE4X.

Keywords

mcp

FAQs

Package last updated on 11 Sep 2026

Related posts