SparXiv MCP Server
Provides tools for searching and managing a local library of arXiv papers, including listing collections, reading collection contents, searching saved papers, and saving papers from arXiv by ID.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SparXiv MCP Serversearch my saved papers for transformers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SparXiv
A quiet arXiv reader that runs on your machine. No home page, no feed, no recommendations. It opens as a single search field on a black screen, and everything else appears only once you have asked for it.

Papers open as reflowed HTML rather than a PDF page image, so text wraps to the column, math is real MathML, and the whole thing is styled to match the editor you already stare at. The PDF is one key away when you want the figures exactly as typeset.
Why
Existing readers each get one part right. alphaXiv embeds papers well and has collections but buries them under a social feed. OpenAlex has a genuinely configurable interface and poor previews. arXiv itself has the library and no interface at all. SparXiv takes the embedded reading and the collections, the configurability, and the arXiv API, and drops everything else.
Related MCP server: Research Server
Reading

Search results sit in a collapsible sidebar. One click opens a paper beside them, ⌘-click opens a second paper next to the first when the window is wide enough for two columns.

Papers come from arXiv's own LaTeXML build, falling back to ar5iv when a paper has none. Neither is embedded or framed: the server fetches the HTML, extracts the article, drops every script, stylesheet, banner and tracker, rewrites the images through a proxy restricted to arXiv hosts, and hands back markup that this stylesheet owns entirely. A paper with no HTML build anywhere says so and offers the PDF.

The PDF renders through pdf.js into the same chrome, inverted for dark by default, pages painted as you approach them.
Collections
S saves the focused paper, ⌘K files it into a named collection. Collections live in one JSON file and are the point of the whole thing being local:
cat ~/.sparxiv/collections.jsonAnything that reads JSON can read your library. The running server also exposes it over HTTP:
Route | Does |
| every collection with its papers |
| one collection |
| every saved paper, flattened, tagged with its collection |
| create, |
| add a paper object |
| remove, version suffix optional |
From Claude
mcp/server.js speaks MCP over stdio and reads the same file with no server running. It has four tools: list_collections, read_collection, search_saved, and save_paper, the last of which pulls metadata from arXiv by id.
{
"mcpServers": {
"sparxiv": { "command": "node", "args": ["/absolute/path/to/SparXiv/mcp/server.js"] }
}
}Configuration
Everything is one file at ~/.sparxiv/config.json, editable in the app with ⌘, and written back live. It carries the colours, the two font stacks, the reading column width and leading, the result density, and every keybinding. Deleting a key restores its default; deleting the file resets everything.
{
"reader": { "mode": "html", "font": "ui", "width": 720, "fontSize": 17, "invertPdf": true },
"layout": { "sidebar": true, "sidebarWidth": 340, "splitMinWidth": 1100 },
"theme": { "bg": "#0d0d0e", "fg": "#d6d6d6", "line": "#1a1a1c" },
"keys": { "focusSearch": "/", "toggleSidebar": "mod+b", "toggleMode": "p", "save": "s" }
}mod is cmd on a Mac and ctrl elsewhere, so one config reads correctly on both. ? lists every binding as currently configured.
Searching
Plain words are tried as a phrase first and as an AND over the content words second, because arXiv indexes no stopwords: sparse mixture of experts returns nothing ANDed and 252 papers as a phrase, while transformer protein folding is the reverse. Field prefixes pass through untouched, so cat:nlin.CG AND all:lenia does what it says. An arXiv id or an abs URL goes straight to that paper.
Running
npm install && npm startThen open http://127.0.0.1:7391. It binds to loopback only. Node 20 or newer, one dependency (pdf.js).
bash tests/run-tests.sh --smkKeys
| focus search, back out |
| move through results, open |
| open beside the current paper |
| swap between HTML and PDF |
| save, save into a collection |
| collections |
| sidebar, close pane |
| reading size |
| config, key list |
License
MIT
This server cannot be installed
Maintenance
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
- AlicenseAqualityDmaintenanceEnables searching, downloading, and managing academic papers from arXiv.org through natural language interactions. Provides tools for paper discovery, PDF downloads, and local paper collection management.41MIT
- FlicenseBqualityCmaintenanceEnables searching arXiv papers and retrieving paper metadata through MCP tools.2
- Alicense-qualityDmaintenanceEnables AI assistants to discover and manage arXiv papers by searching for papers, extracting metadata, and browsing saved collections, all within the conversation.1MIT
- Alicense-qualityBmaintenanceEnables searching arXiv, fetching metadata, reading papers as section-aware Markdown, listing recent papers, and downloading PDFs via five MCP tools.172MIT
Related MCP Connectors
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Search and download academic papers from arXiv, PubMed, bioRxiv, medRxiv, Google Scholar, Semantic…
Turn a GitHub repo or docs site into agent-ready context: pack it or search it, over MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jacksoswag/SparXiv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server