Skip to main content
Glama
Gunnar-Stunnar

Paper Research Helper

Paper Research Helper

A LangChain + LangGraph research assistant that ingests academic papers and answers questions about them, exposed as an MCP server compatible with Cursor and Claude Desktop.

Features

  • Paper ingestion — fetch PDFs from arXiv by ID, extract text, chunk and embed into a local FAISS vector store.

  • Semantic search — search arXiv and Semantic Scholar for papers by keyword.

  • QA over papers — ask natural-language questions answered with retrieved passages from ingested papers.

  • MCP server — expose all capabilities as tools consumable by any MCP-compatible client.

Related MCP server: Research Paper Ingestion MCP Server

Project Structure

paper_research_helper/
├── main.py                    # CLI entry point (serve / ingest / ask)
├── requirements.txt
├── .env.example
├── docs/
│   ├── architecture.md        # System design & data flow
│   └── getting_started.md    # Step-by-step setup guide
└── src/
    ├── adapters/              # External service connectors
    │   ├── arxiv.py           #   arXiv API
    │   ├── semantic_scholar.py #  Semantic Scholar API
    │   └── pdf.py             #   PDF text extraction
    ├── tools/                 # LangChain tools used by agents
    │   ├── search.py          #   Paper search tool
    │   ├── retrieval.py       #   Vector store retrieval tool
    │   └── summarize.py       #   LLM summarization tool
    ├── agents/                # LangGraph agent nodes
    │   ├── research_agent.py  #   Discovers & summarises papers
    │   └── qa_agent.py        #   RAG question-answering agent
    ├── graphs/                # LangGraph state graphs
    │   └── research_graph.py  #   Full research pipeline graph
    ├── pipeline/              # Ingestion orchestration
    │   └── ingestion.py       #   Fetch → chunk → embed → index
    └── mcp/                   # MCP server
        └── server.py          #   FastMCP server with 3 tools

Quick Start

1. Install dependencies

uv sync           # creates .venv and installs all dependencies

2. Configure environment

cp .env.example .env
# edit .env and set OPENAI_API_KEY at minimum

3. Ingest a paper

python main.py ingest --arxiv-id 2301.07041   # Attention Is All You Need (example)

4. Ask a question

python main.py ask "What problem does the transformer architecture solve?"

5. Start the MCP server

python main.py serve

Then add the server to your Cursor or Claude Desktop MCP config:

{
  "mcpServers": {
    "paper-research-helper": {
      "command": "python",
      "args": ["main.py", "serve"],
      "cwd": "/path/to/paper_research_helper"
    }
  }
}

MCP Tools

Tool

Description

search_papers

Search arXiv or Semantic Scholar by keyword

ingest_paper

Ingest an arXiv paper into the local vector store

ask_question

Answer a research question using the QA graph

License

MIT

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Enables LLMs to search, analyze, and summarize academic research papers in real-time from arXiv, Semantic Scholar, and PubMed. Provides automatic deduplication, citation analysis, and BibTeX generation across multiple research databases.
    Last updated
    68
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables searching, downloading, and analyzing academic papers from arXiv and Semantic Scholar to extract key insights and citation metrics. It facilitates autonomous knowledge acquisition by processing research findings and integrating them into persistent AI memory systems.
    Last updated
  • A
    license
    -
    quality
    C
    maintenance
    Enables natural language search and analysis of arXiv academic papers with AI-powered relevance ranking, full-text extraction, and support for multiple integrations like Claude and LangChain.
    Last updated
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables retrieval of academic paper metadata, PDFs, full text, citations, and references by title via Semantic Scholar, arXiv, and other sources.
    Last updated
    6
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.

  • Search 340M+ academic papers — citation graphs, semantic similarity, and AI literature reviews.

  • Academic paper search, scientific literature, citation analysis, arXiv & semantic related-work.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Gunnar-Stunnar/Paper_Research_Helper'

If you have feedback or need assistance with the MCP directory API, please join our Discord server