ArXiv Research Assistant

ArXiv Research Assistant

Enables researchers to search ArXiv papers, extract key insights (problems, methods, results) from abstracts, and perform ML-powered analysis including topic modeling, trend visualization, and author collaboration networks.

Category
Visit Server

README

🎓 ArXiv Research Assistant (MCP Server)

An automated Research Agent server built with the Model Context Protocol (MCP). This tool helps Data Scientists and Researchers search ArXiv, analyze papers, and discover insights using Machine Learning—all directly from their IDE.

🚀 Features

  • automated Search: Query ArXiv for papers on any topic.
  • Intelligent Extraction: Uses NLP heuristics to extract the core "Problem", "Method", and "Result" from abstracts.
  • Data Science Pipeline:
    • Saves findings to a structured dataset (references.csv).
    • Visualize Trends: Generate charts of dominating research methods (analyze_references.py).
    • Topic Modeling: Uses NMF (Non-Negative Matrix Factorization) to automatically discover hidden research themes (topic_modeling.py).
  • Knowledge Graph: Generates an interactive HTML network graph of author collaborations (generate_network.py).

Installation

Prerequisites

  • Python 3.10+ (Tested on Python 3.14)

Setup

  1. Clone the repository:

    git clone <your-repo-url>
    cd mcp-project
    
  2. Create a Virtual Environment:

    python3 -m venv .venv
    source .venv/bin/activate
    
  3. Install Dependencies:

    pip install -r requirements.txt
    

⚙️ Configuration

Add the server to your IDE's MCP settings (e.g., mcp-servers.json in VS Code or Claude Desktop):

{
  "mcpServers": {
    "research-assistant": {
      "command": "/absolute/path/to/your/mcp-project/.venv/bin/python",
      "args": [
        "/absolute/path/to/your/mcp-project/research_server.py"
      ],
      "env": {
        "PYTHONPATH": "/absolute/path/to/your/mcp-project"
      }
    }
  }
}

Note: Replace /absolute/path/to/your/mcp-project/ with the actual full path on your machine.

đź’ˇ Usage

1. The MCP Agent

Once configured, you can ask your AI Assistant commands like:

"Find 5 papers on 'Reinforcement Learning from Human Feedback', extract their key findings, and save them to my bibliography."

2. Analysis Tools

Run these scripts to generate insights from your collected references.csv:

  • Visualize Keyword Trends:

    python analyze_references.py
    

    Generates method_keywords.png.

  • View Author Network:

    python generate_network.py
    

    Generates author_network.html (interactive).

  • Discover Hidden Topics:

    python topic_modeling.py
    

    Generates references_with_topics.csv with ML-assigned topic clusters.

đź“‚ Project Structure

  • research_server.py: The core MCP server logic.
  • analyze_references.py: Visualization script for keyword frequencies.
  • generate_network.py: NetworkX/Pyvis script for knowledge graphs.
  • topic_modeling.py: Scikit-learn script for NMF topic modeling.
  • references.csv: The dataset built by the agent.
  • requirements.txt: Python dependencies.

Built with mcp, arxiv, pandas, scikit-learn, and networkx.

arxiv-research-mcp

arxiv-research-mcp

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured