mcpbeat Sign in

BrunoSan ArXiv Intelligence MCP Server

answering

BrunoSan ArXiv Intelligence is answering right now. Last checked 13 min ago. It exposes 16 tools.

AI research intelligence for AI, ML, NLP, vision and robotics with citations and entity graphs.

Uptime history 4 days of history
4 days agonow
100.0%
Uptime 24h
91 of 91 checks
16
Tools
read from the server
131 ms
Response time
average over 24h
open, no key
Access
streamable-http

Nothing serious here today

Today is the operative word: we check BrunoSan ArXiv Intelligence every 15 minutes and re-read its code on every release. Watch it and you find out the day that stops being true.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 13 min ago.

run in your terminal
claude mcp add arxiv --transport http https://arxiv.mcp.brunosan.de/mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "arxiv": {
      "url": "https://arxiv.mcp.brunosan.de/mcp"
    }
  }
}
~/.codex/config.toml
[mcp_servers.arxiv]
url = "https://arxiv.mcp.brunosan.de/mcp"
.cursor/mcp.json
{
  "mcpServers": {
    "arxiv": {
      "url": "https://arxiv.mcp.brunosan.de/mcp"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "arxiv": {
      "url": "https://arxiv.mcp.brunosan.de/mcp"
    }
  }
}

Available tools 16

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

arxiv
arxiv_author_papers
All papers by a researcher, with their position on each paper. Uses fuzzy name matching (LIKE) to handle name variations. Returns papers sorted newest first. Args: author_name: Researcher name, e.g. 'Yann LeCun', 'lecun' (partial match works) limit: Max results (default: 20, max: 50)
arxiv_citation_network
Citation graph for a paper — who cites it, or what does it cite? direction='cited_by': Papers in our database that cite this paper. direction='citing': Papers that this paper cites (its references). depth=2: Expands one hop further (depth-2 neighbors). Hard cap: 200 total. Args: arxiv_id: ArXiv paper ID, e.g. '2402.01234' direction: 'cited_by' (inbound) or 'citing' (outbound, default: cited_by) depth: Graph depth: 1 or 2 (default: 1)
arxiv_co_occurrence
Papers that mention BOTH entity A and entity B. Answers questions like: - 'Which papers use both GPT-4 and RLHF?' - 'Where do LoRA and MMLU appear together?' - 'Papers combining RAG and Chain-of-Thought?' The intersection reveals research that explicitly bridges two concepts. Args: entity_a: First entity name, e.g. 'GPT-4', 'LoRA', 'MMLU' entity_b: Second entity name, e.g. 'RLHF', 'Chain-of-Thought' date_from: ISO date filter date_to: ISO date filter limit: Max results (default: 20, max: 50)
arxiv_entity_trend
How often is an entity mentioned over time? Shows the rise (or fall) of a benchmark, model, method, or dataset across the research literature — per month, quarter, or year. Example: 'LoRA' — watch it explode in 2023-2024. Example: 'BERT' — watch it decline as LLMs dominate. Args: entity_name: Entity to track, e.g. 'LoRA', 'MMLU', 'RAG', 'GPT-4' granularity: Time grouping: month (default), quarter, year
arxiv_get_paper
Full paper object with all connected data. Returns: paper metadata, author list with positions, matched entities, references (up to 100), and linked GitHub repos. Args: arxiv_id: ArXiv ID, e.g. '2402.01234' or '2402.01234v2'
arxiv_institution_ranking
Institution ranking by paper count. Primary signal: author_affiliations extracted from ArXiv HTML. Secondary signal (include_github_orgs=True): adds GitHub org counts as a complementary signal. Many papers have no affiliation in HTML but do have a GitHub org link — combining both gives a fuller picture. Note: affiliation data is extracted from HTML and may be incomplete (fetch completion is reported live by arxiv_pipeline_status; extraction quality is a separate signal). Args: date_from: ISO date filter date_to: ISO date filter include_github_orgs: Also show GitHub org ranking as second signal limit: Max results (default: 20, max: 50)
arxiv_most_cited
Most cited papers — ranked by inbound citation count. This answers the question every researcher, VC, and journalist asks first: 'What are the most influential papers in AI right now?' Counts how many papers in our database cite each target paper. Only papers with resolvable ArXiv IDs in their references are counted. Args: category: Filter citing papers by category (optional) date_from: Only count citations from papers published from this date date_to: Only count citations from papers published until this date limit: Max results (default: 20, max: 50)
arxiv_pipeline_status
Full system status — database counts, pipeline progress, frontier, quality. Returns: - Paper/author/entity/ref/repo counts - Pipeline progress: html_fetched %, whitelist_matched %, llm_processed % - Frontier: how far back the backfill has reached - Quality report: last run timestamp and overall status - Quality log: last 5 quality check runs from quality_log table
arxiv_repo_landscape
GitHub repository landscape — which orgs and repos produce research code? Shows the open-source output of the research community. 'openai', 'google-deepmind', 'microsoft', 'huggingface' etc. ranked by how many papers link to their repos. org_filter='huggingface' shows all HuggingFace repos with papers. Args: org_filter: Filter to a specific GitHub org, e.g. 'openai', 'google-deepmind' date_from: Only papers published from this date date_to: Only papers published until this date limit: Max results per ranking (default: 20, max: 50)
arxiv_search_papers
Full-text search over the live cs.AI/ML paper graph using FTS5. Searches title AND abstract. Supports boolean operators: AND, OR, NOT, phrase matching ("exact phrase"), prefix (term*). Args: query: FTS5 search query. E.g. 'LoRA fine-tuning', '"chain of thought"', 'RLHF NOT PPO' category: Filter by primary category. Options: cs.AI, cs.LG, cs.CL, cs.CV, cs.RO date_from: ISO date filter, e.g. '2024-01-01' date_to: ISO date filter, e.g. '2025-12-31' empirical_only: Only papers marked as empirical by LLM pass (if available) has_code_only: Only papers with code release (llm_has_code=1, if available) limit: Max results (default: 20, max: 50)
arxiv_top_authors
Top researchers ranked by paper count, with role filter. role='last_author' is the PI filter — finds lab directors and group leaders who drive research agendas. In academic AI, the last author IS the boss. role='first_author' finds the PhD students and postdocs doing the work. role='any' counts all papers regardless of position. Args: role: Author position filter: any (default), first_author, last_author category: Filter by primary category: cs.AI, cs.LG, cs.CL, cs.CV, cs.RO date_from: ISO date filter, e.g. '2024-01-01' date_to: ISO date filter, e.g. '2025-12-31' limit: Max results (default: 20, max: 50)
arxiv_top_entities
Entity ranking by mention count across all papers. title_only=True is a powerful relevance filter: a paper mentioning MMLU in the title IS about MMLU, not just using it as one of many benchmarks. Args: type: Filter by entity type: benchmark, model, method, dataset (optional, default: all) date_from: Only count mentions in papers published from this date date_to: Only count mentions in papers published until this date title_only: Only count mentions where entity appears in the paper title limit: Max results (default: 20, max: 50)
arxiv_track_papers
Chronological papers inside one stable research track. Args: track: Track slug or exact name, e.g. 'ai-agents' or 'multi-agent-systems'. date_from: Optional ISO date lower bound. date_to: Optional ISO date upper bound. has_code_only: Restrict to papers with confirmed code signal. limit: Max results (default 20, max 50).
arxiv_track_trend
Research volume for one stable track by month, quarter or year.
arxiv_tracks
List stable ArXiv research-track objects with definitions and live counts.
related
get_related_intelligence
Live cs.AI/ML/CL/CV/RO paper graph. FTS5 + resolved ArXiv citation links. Use for: arxiv_search_papers("LoRA fine-tuning", has_code_only=True) → Related verticals worth connecting: AI News (mcp.brunosan.de/mcp) — industry reaction to papers Robotics (robotics.mcp.brunosan.de/mcp) — applied robotics papers (cs.RO) Quantum (quantum.mcp.brunosan.de/mcp) — quant-ph research depth Biotech (biotech.mcp.brunosan.de/mcp) — bio-ML and drug discovery papers

Endpoints

URLTransportStateLatencyChecked
https://arxiv.mcp.brunosan.de/mcp streamable-http answering 102 ms 13 min ago

Alternatives to BrunoSan ArXiv Intelligence

same job, measured the same way
I
SEO GEO Intelligence
by atul0016

SEO and AI-answer visibility intelligence for search, content gaps, and GEO actions.

44 installs/wk local only
LastSearch
by lastsearch-hq

Evidence-backed web research for AI agents with citations and confidence scores.

279 installs/wk local only
YouTube Research MCP
by coyasong

Citation-ready YouTube transcript research and optional channel intelligence for AI agents.

101 installs/wk local only
Codeseeker
by jghiringhelli

Graph-powered code intelligence with semantic search and knowledge graph for AI assistants

315 installs/wk local only
Cleotic
by generaldataworks

AI brand visibility, competitor mentions and citation evidence for agents. Cleotic account required.

answering
xaffinity MCP
by yaniv-golan

MCP server for Affinity CRM - entity search, relationship intelligence, and workflow management

local only
Paper Lantern
by paperlantern

Research intelligence for AI coding agents. 2M+ CS papers with evidence and tradeoffs.

answering
Arxivsub MCP
by arxivsub

Search arXiv and major AI/ML/CV/NLP/robotics conference papers and their related work.

27 installs/wk local only

BrunoSan ArXiv Intelligence — questions

Answers built from our own checks of this server.

What can BrunoSan ArXiv Intelligence do?
It exposes 16 tools, read directly from the server on our last check. Among them: arxiv_author_papers, arxiv_citation_network, arxiv_co_occurrence, arxiv_entity_trend, arxiv_get_paper, arxiv_institution_ranking and 10 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is BrunoSan ArXiv Intelligence working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 91 of 91 checks got a reply (100.0%), average response time 131 ms. The bar chart above shows every period we have measured.
How do I connect BrunoSan ArXiv Intelligence?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does BrunoSan ArXiv Intelligence need an API key?
No. BrunoSan ArXiv Intelligence completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 16 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is BrunoSan ArXiv Intelligence?
It answers our handshake in 131 ms on average, which is faster than 80% of all working MCP servers we measure. That puts it in the quick quarter of the ecosystem. The comparison comes from our own checks across the whole registry, every 15 minutes.