npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fre4x/arxiv

v1.0.43

Published

An arXiv MCP server for searching and retrieving academic papers.

Downloads

1,755

Readme

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

| Tool | What it hunts | |------|--------------| | arxiv_search_papers | Free-text search with field prefixes (ti:, au:, abs:, cat:) and boolean operators | | arxiv_get_paper | Full metadata for one or more papers by arXiv ID | | arxiv_search_by_author | All papers by a specific author | | arxiv_search_by_category | Papers in a subject category (e.g. cs.AI, cs.LG, q-fin.TR) | | arxiv_list_categories | All 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

arxiv_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.*

arxiv_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": []
  }
]

arxiv_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.*

arxiv_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...

arxiv_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.