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

arxiv-semantic-search-mcp

v0.0.5

Published

MCP server for ArXiv semantic search with paper discovery and category browsing

Readme

ArXiv Semantic Search MCP Server

A Model Context Protocol (MCP) server that provides semantic search functionality for academic papers from ArXiv.

Quick Start

No environment variables required - this server works out of the box with the ArXiv Xplorer API.

Installation

1. Using with Claude Desktop

Add the server config to your Claude Desktop configuration file:

For Local Installation (on Windows)

"arxiv-semantic-search-mcp": {
  "command": "cmd",
  "args": [
        "/k",
        "npx",
        "-y",
        "arxiv-semantic-search-mcp"
      ]
}

For Local installation (on Linux)

"arxiv-semantic-search-mcp": {
  "command": "npx",
  "args": [
        "-y",
        "arxiv-semantic-search-mcp"
      ]
}

For Development (on Windows / Linux)

cd /path/to/arxiv-semantic-search-mcp
npm run build
"arxiv-semantic-search-mcp": {
  "command": "node",
  "args": [
        "/path/to/arxiv-semantic-search-mcp/build/index.js"
      ]
}

Location of the configuration file:

  • Windows: %APPDATA%/Claude/claude_desktop_config.json
  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Available Tools

The server provides the following tools for academic paper search:

Search & Discovery Tools

  • search_papers - Search for academic papers from ArXiv with advanced filtering capabilities including query terms, category filtering, and year filtering. Returns detailed paper information including title, authors, abstract, categories, publication date, and direct links to both the paper page and PDF.
  • get_categories - Get a comma-separated list of all supported ArXiv categories with their IDs and names.

Example Queries

Search & Discovery

  • "Show me papers about computer vision published in 2023"
  • "Search for papers in the cs.AI category about neural networks"
  • "Find papers about quantum physics published between 2020-2024"

Supported Categories

The get_categories function returns the complete ArXiv category taxonomy with 170+ categories across all major fields:

  • Computer Science (44 categories) - AI, Machine Learning, Vision, Databases, Networks, etc.
  • Mathematics (44 categories) - Algebra, Analysis, Geometry, Statistics, etc.
  • Physics (80+ categories) - Astrophysics, Condensed Matter, High Energy, Quantum, etc.
  • Economics (3 categories) - Econometrics, General Economics, Theory
  • Electrical Engineering (4 categories) - Signal Processing, Systems, etc.
  • Quantitative Biology (10 categories) - Genomics, Biomolecules, etc.
  • Quantitative Finance (9 categories) - Computational Finance, Risk Management, etc.
  • Statistics (6 categories) - Applications, Computation, Methodology, etc.

Development

If you want to contribute or modify the server:

# Clone the repository
git clone https://github.com/tan-yong-sheng/arxiv-semantic-search-mcp.git

# Install dependencies
npm install

# Build the server
npm run build

# Run linting
npm run lint

# Run all checks
npm run check

# For development with auto-rebuild
npm run dev

Scripts

  • npm run build - Build TypeScript files
  • npm run lint - Run ESLint
  • npm run check - Run build and lint
  • npm run dev - Run in development mode
  • npm run start - Start the server

API

This server uses the ArXiv Xplorer API for searching academic papers.

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to open an issue or submit a pull request.

Support

For issues and questions, please open an issue on the GitHub repository.