Academic Research MCP Server

Research papers from arXiv, Google Scholar, and Wikipedia with citation metrics

🎓 Research MCP — AI Paper Search & Citations avatar

🎓 Research MCP — AI Paper Search & Citations

Pricing

from $10.00 / 1,000 results

Try for free

Go to Apify Store

🎓 Research MCP — AI Paper Search & Citations

🎓 Research MCP — AI Paper Search & Citations

nexgendata/academic-research-mcp-server

Try for free

Ask questions about this Actor

MCP server for AI agents to search ArXiv & Google Scholar for papers. Connect Claude, GPT or any AI to research databases. 2 tools for academic intelligence.

Pricing

Rating

0.0

(0)

Developer

Stephan Corbeil

Stephan Corbeil

Maintained by Community

Actor stats

0

Bookmarked

7

Total users

4

Monthly active users

7 hours ago

Last modified

Categories

AI

Developer tools

MCP servers

README

Pricing

Endpoints

Issues

🎓 Academic Research MCP Server — arXiv, Google Scholar & OpenAlex for Claude / ChatGPT

Connect AI agents to live academic-research data through the Model Context Protocol — arXiv papers, Google Scholar citations, OpenAlex metadata, and research-trend signal. A drop-in alternative to the rate-limited Semantic Scholar API, Connected Papers, Scite, and direct OpenAlex queries.

Why This MCP Server Beats Semantic Scholar API, Connected Papers, OpenAlex & Scite

FeatureNexGenData Academic Research MCPSemantic Scholar APIConnected Papers APIOpenAlex directScite
CostPay-per-event, ~$0.003 per tool callFree, heavy rate-limitFree UI, paid APIFree, query-cap$20-50 / user / month
AI agent integrationNative MCP — Claude Desktop, CursorNone — REST onlyNone — UI onlyNoneNone
Rate limitApify-managed100 req / 5 minStrict100,000 / day capPer-seat
CoveragearXiv + Scholar + OpenAlex + NIHOpen papers onlyVisual graphOpen papersCitation context
Time-to-first-call< 60 secondsAPI-key signupAccount + planAPI keyPer-seat license
AuthApify tokenAPI key + tierPlan + API keyEmail + keyInstitution / seat
OutputStructured JSON for LLM function-callsJSONVisual graphJSONJSON

Most research teams pick this MCP server because it is the only way to give an AI agent unified access to four academic-data sources at once — without juggling separate rate-limited keys.

What You Get

Tools exposed to your AI agent:

  • search_papers — keyword / author / field search across arXiv + Scholar + OpenAlex
  • get_paper_details — abstract, authors, year, citation count, references, DOI
  • find_related_papers — co-citation + bibliographic-coupling graph traversal
  • get_author_profile — h-index, total citations, paper list, affiliation history
  • citation_trends — citations-per-year curve for a paper or author
  • get_grant_data — NIH RePORTER grant lookup by PI, institution, project number
  • subject_trends — paper-volume growth per field / keyword over time

Each response is clean JSON tuned for LLM tool-use — no PDF parsing, no XML feed pagination.

Use Cases

  • AI research assistants — Claude pulls top 20 papers on a topic, ranks by recency + citation count, summarizes
  • Lit-review copilots — multi-step agents draft a literature review by chaining search_papersfind_related_papersget_paper_details
  • Grant-discovery agents — match a research lab's recent papers to NIH RePORTER grant calls
  • Competitive research intel — track papers from a competitor's R&D group over time
  • Academic publishers — automate "papers citing this paper" alerts via scheduled MCP calls
  • VC due-diligence — find lead inventors behind a deep-tech startup before a meeting
  • Policy think-tanks — surface citation-network influence of competing research camps

Quick Start


from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("nexgendata/academic-research-mcp-server").call(run_input={

    "tool": "search_papers",

    "params": {"query": "retrieval augmented generation", "year_min": 2024, "limit": 25}

})

for paper in client.dataset(run["defaultDatasetId"]).iterate_items():

    print(paper["title"], paper["citations"])


Or connect Claude Desktop / Cursor / Cline directly to the MCP endpoint and ask in natural language: "Find me the top 10 most-cited 2025 papers on diffusion models and summarize the methodology differences."

Pricing

Pay-per-event — you only pay for tool calls that return data:

  • Actor Start: ~$0.0002
  • Tool call: $0.003 per call

A typical lit-review agent issues 30-80 tool calls per task → $0.10-$0.25 total.

Related NexGenData Actors

Use caseActor
Google Scholar bulk paper + citation scraperGoogle Scholar Scraper
arXiv keyword search + bulk paper exportarXiv Scraper
NIH RePORTER grant + funding lookupNIH RePORTER Grants Scraper
News + press release monitoring for AI agentsNews MCP Server
Finance + market data for AI agentsFinance MCP Server
Developer ecosystem data for AI agentsDeveloper Tools MCP Server
Wikipedia structured-knowledge scraperWikipedia Scraper
IRS 990 nonprofit financial filingsIRS 990 Nonprofit Explorer

FAQ

**Q: How does this compare to Semantic Scholar's API?**Semantic Scholar's free API caps at 100 req / 5 minutes and rejects bulk pulls. This MCP server multiplexes across four sources with Apify-managed rate limits so an agent can run a 50-call lit-review uninterrupted.

**Q: Can the agent call this from Claude Desktop?**Yes — point Claude Desktop's MCP config at the Apify endpoint URL for this actor. Tool discovery is automatic.

**Q: Are paywalled papers included?**Metadata only — title, abstract, authors, citations. Full-text PDFs require institutional access through the publisher.

**Q: How fresh is the data?**arXiv is refreshed daily, Scholar and OpenAlex hourly, NIH RePORTER weekly.

**Q: What about citation graphs?**Use find_related_papers — returns co-citation neighbors plus bibliographic-coupling matches.

**Q: Can I get DOIs for cross-referencing?**Yes — every paper response includes DOI where one exists.

**Q: Is this safe for production research products?**Yes — runs on Apify auto-scaling infrastructure with logging + retry semantics built in.

About NexGenData

NexGenData publishes 260+ buyer-intent actors plus a family of MCP servers for AI agent workflows (finance, news, sports, real-estate, developer tools, academic research, premium data). All pay-per-result. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b


How NexGenData Pricing Works

Every NexGenData actor uses pay-per-event pricing — you only pay for results that actually land in your dataset. No monthly minimum, no seat fees, no surprise overage bills.

  • Actor Start: a single-event charge each time you spin the actor up (scaled to memory size)
  • Result: charged per item written to the default dataset
  • No charge for retries, internal proxy rotation, or failed sub-requests — those are absorbed by the platform

If you only need the data once a quarter, you only pay once a quarter. If you scale to millions of records, the unit cost stays the same.

Apify Platform Bonus

New to Apify? Sign up with the NexGenData referral link — you get free platform credits on signup (enough for several thousand free results) and you help fund the maintenance of this actor fleet.

Integration Surface

Every actor in the NexGenData catalog can be triggered from:

  • Apify console — point-and-click run
  • Apify API — REST + webhooks
  • Apify Python / JS SDKs — programmatic batch
  • Zapier, Make.com, n8n — official integrations
  • MCP — many actors are exposed as MCP tools for Claude / ChatGPT / Cursor agents
  • Schedules — built-in cron for daily / weekly / monthly runs
  • Webhooks — POST results to any HTTPS endpoint on dataset write

Support

NexGenData maintains 260+ Apify actors and ships updates regularly. Bug reports via the Apify console issues tab get a response within 24 hours. Roadmap requests are welcome — high-demand features ship in the next version.

🏠 Home: thenextgennexus.com 📦 Full catalog: apify.com/nexgendata

You might also like

🏠 Real Estate MCP — AI Property Search avatar

🏠 Real Estate MCP — AI Property Search

nexgendata/real-estate-mcp-server

MCP server for AI agents to search Redfin listings & get market data. Connect Claude, GPT or any AI to analyze real estate markets. 2 tools for property intelligence via AI.

User avatar

Stephan Corbeil

14

🛒 E-Commerce MCP — AI Shopify Analysis avatar

🛒 E-Commerce MCP — AI Shopify Analysis

nexgendata/ecommerce-intelligence-mcp-server

MCP server for AI agents to analyze Shopify stores & extract products. Connect Claude, GPT or any AI to ecommerce intelligence. 2 tools for competitive analysis.

Stephan Corbeil

2

📱 Social MCP — AI Content & Media Search avatar

📱 Social MCP — AI Content & Media Search

nexgendata/social-content-mcp-server

MCP server for AI agents to search Dev.to, Steam, podcasts & Eventbrite. Connect Claude, GPT or any AI to social platforms. 4 tools for content intelligence.

Stephan Corbeil

2

🏠 Redfin MCP — AI Property Search & Data avatar

🏠 Redfin MCP — AI Property Search & Data

nexgendata/redfin-mcp-server

MCP server for AI agents to search Redfin listings & get property details. Connect Claude, GPT or any AI to real estate data. 2 tools for property analysis.

Stephan Corbeil

10

🔧 Dev Tools MCP — AI Code & Package Search avatar

🔧 Dev Tools MCP — AI Code & Package Search

nexgendata/developer-tools-mcp-server

MCP server for AI agents to search GitHub, npm, PyPI, StackOverflow & ArXiv. Connect Claude, GPT or any AI to dev ecosystems. 7 tools for developer intelligence.

Stephan Corbeil

3

💹 Finance MCP — AI Stock & Market Data avatar

💹 Finance MCP — AI Stock & Market Data

nexgendata/finance-mcp-server

MCP server for AI agents to access stocks, crypto, forex & portfolio tracking. Connect Claude, GPT or any AI to financial markets. 5 tools for investment intelligence via AI.

Stephan Corbeil

8

arXiv Intelligence MCP — AI Agent Scholar

red.cars/arxiv-intelligence-mcp

Give your AI agent access to 2M+ arXiv preprint papers — search by keyword, author, or category; get paper details; profile authors; track citations and trending research.

AutomateLab

-

Lead Generation MCP Server — AI Agent Tools avatar

Lead Generation MCP Server — AI Agent Tools

samstorm/lead-gen-mcp-server

MCP server for AI agents. Connect Claude, GPT, or any MCP client to find business leads, hiring companies, building permits, and Amazon product research. One endpoint, 13 lead gen tools.

Sam Kleespies

1

Google Scholar Scraper — Academic Papers & Citations

muhammadafzal/google-scholar-scraper

Extract academic paper titles, authors, abstracts, citation counts, publication details, and PDF links from Google Scholar. Fast, reliable, no browser overhead. Search by keyword, topic, or author name. MCP-optimized for AI agents.

Muhammad Afzal

1

🔍 SEO MCP — AI Website Auditing & Analysis avatar

🔍 SEO MCP — AI Website Auditing & Analysis

nexgendata/seo-web-analysis-mcp-server

MCP server for AI agents to crawl sites, detect tech stacks, check DNS/SSL & WHOIS. Connect Claude, GPT or any AI to web intelligence. 5 tools for SEO analysis.

Stephan Corbeil

3

Related articles

Blog article image

Best MCP servers for developers

Read more

เซิร์ฟเวอร์ที่เกี่ยวข้อง

NotebookLM Web Importer

นำเข้าหน้าเว็บและวิดีโอ YouTube ไปยัง NotebookLM ด้วยคลิกเดียว ผู้ใช้กว่า 200,000 คนไว้วางใจ

ติดตั้งส่วนขยาย Chrome