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

arxivsub-mcp

v0.1.1

Published

MCP server for arXivSub — search arXiv and top AI / CV / ML / robotics / NLP conference papers, follow a paper to its related work, build research analytics, and manage a personal library, straight from your AI agent.

Readme

arxivsub-mcp

An MCP server for arXivSub — search arXiv and the top AI / CV / ML / robotics / NLP conferences, follow any paper to its related work, build research analytics, and manage a personal library, straight from your AI agent (Claude Desktop, Cursor, Cline, Claude Code, Windsurf, …).

arXivSub summarizes every paper into a structured 6-part breakdown (what it's about, innovations, techniques, datasets, results, limitations) and indexes it for semantic search across arXiv + CVPR, ICCV, ECCV, ICLR, ICML, NeurIPS, AAAI, MICCAI, CoRL, RSS, ACL, EMNLP, ICRA, IROS, IJCAI, SIGGRAPH, SIGGRAPH Asia. This server puts that engine directly in your agent's hands.

Get a free key (7-day trial, no credit card)

  1. Sign in at https://arxivsub.comfyai.app/skills with email or Google.
  2. Copy your API key from the Skills page.
  3. Put it in the server config below as ARXIVSUB_SKILL_KEY.

New accounts get a 7-day free trial of the full skill. After that it's part of arXivSub Pro.

Install

The server runs via npx — no manual install needed. Add it to your MCP client's config.

Claude Desktop (claude_desktop_config.json), Cursor (~/.cursor/mcp.json), Windsurf, Cline, etc.:

{
  "mcpServers": {
    "arxivsub": {
      "command": "npx",
      "args": ["-y", "arxivsub-mcp"],
      "env": { "ARXIVSUB_SKILL_KEY": "your_key_here" }
    }
  }
}

Claude Code:

claude mcp add arxivsub --env ARXIVSUB_SKILL_KEY=your_key_here -- npx -y arxivsub-mcp

Restart your client and the tools below become available.

Tools

| Tool | What it does | |------|--------------| | search_papers | Semantic + keyword search over arXiv and conferences. Filters: venues, recency, year, has_code. Returns each paper's 6-part summary, authors, PDF, and code link. | | find_similar_papers | Nearest-neighbour "related work" for a paper you already found. Chainable for a mini literature review. | | research_insight | Pivot analytics (the website's Custom Chart engine): trends, rankings, breakdowns. Pro / trial. | | library_save | Save/update a paper in your personal library — notes, reading status, collections. | | library_list | List your saved papers and collections. |

Just ask your agent naturally — "find recent papers on LLM safety with code", "more work like this one", "how has interest in diffusion models trended by month", "save this to my "to read" collection" — and it will pick the right tool.

Notes

  • Case-sensitive venues: arxiv, CVPR, ICCV, ECCV, ICLR, ICML, NeurIPS, AAAI, MICCAI, CoRL, RSS, ACL, EMNLP, ICRA, IROS, IJCAI, SIGGRAPH, SIGGRAPH Asia.
  • Quota: each search / similar / insight call uses one daily quota unit; library calls are free. The remaining quota is returned with every result.
  • Privacy / security: the server only holds your skill key and talks to the arXivSub gateway over HTTPS. It has no direct database access and no service credentials.

Development

npm install
npm run build           # tsc -> dist/
ARXIVSUB_SKILL_KEY=... node dist/index.js   # run over stdio

License

MIT