VOOZH about

URL: https://apify.com/dltik/mcp-server-openalex

⇱ OpenAlex MCP Server: 200M Papers & Authors for AI Agents Β· Apify


πŸ‘ OpenAlex MCP Server: 200M Papers & Authors for AI Agents avatar

OpenAlex MCP Server: 200M Papers & Authors for AI Agents

Pricing

from $0.00005 / actor start

Go to Apify Store

OpenAlex MCP Server: 200M Papers & Authors for AI Agents

MCP server exposing 8 tools to query OpenAlex (200M+ scholarly works, authors, institutions, concepts, sources). HTTP-only, no API key. $0.005/tool-call.

Pricing

from $0.00005 / actor start

Rating

0.0

(0)

Developer

πŸ‘ Walid

Walid

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Share

OpenAlex MCP Server: 200M Academic Papers, Authors, Institutions for AI Agents

An Apify-hosted MCP server exposing 8 tools to query OpenAlex β€” the open catalogue of 200M+ scholarly works, authors, institutions, sources, and concepts. HTTP-only, no API key. $0.005 per tool-call.

⭐ Bookmark this OpenAlex MCP Server β€” Apify ranks actors by bookmarks, so it directly helps the visibility of this actor on the Apify Store. β†’ Bookmark it on the Apify Store

What can this OpenAlex MCP Server do?

  • πŸ“š Search 200M+ scholarly works β€” papers, books, datasets across every discipline.
  • πŸ‘©β€πŸ”¬ Find authors with h-index, ORCID, institution β€” full bibliometric profiles.
  • πŸ›οΈ Resolve institutions & ROR IDs β€” universities, hospitals, research orgs in 200+ countries.
  • 🧠 Query the OpenAlex concept taxonomy β€” Wikidata-linked research topics, levels 0-5.
  • πŸ“° Discover sources β€” journals, conferences, repositories, OA status, DOAJ flag.
  • πŸ€– MCP-shaped for AI agents β€” call from Claude, Cursor, Continue with one tool dispatcher.

What data can you extract with the OpenAlex MCP Server?

FieldDescription
openalex_idStable OpenAlex identifier (W… / A… / I… / S… / C…)
doiDOI of the work (when available)
titleTitle of the work / author / institution / source
publication_yearYear published
publication_dateISO publication date
cited_by_countTotal citation count
authorshipsFull nested authorship objects (raw OpenAlex)
authorsFlat list of author display names
primary_location / primary_sourceHosting journal / repo info
open_accessis_oa, oa_status, oa_url (Unpaywall-style)
conceptsWikidata-linked research topics with score
typeWork type (article, book, dataset, …)
languageISO 639 code
referenced_works_countNumber of references the work cites
abstract_inverted_indexRaw inverted index (word β†’ positions)
abstractReconstructed plain-text abstract (when reconstruct_abstract: true)
bookmark_ctaLast record β€” bookmark the actor to support visibility

How to use the OpenAlex MCP Server

  1. Open the actor on Apify: apify.com/dltik/mcp-server-openalex.
  2. Discover the tool catalog β€” run once with mode=list_tools (free, no charge).
  3. Pick a tool β€” search_works, get_work, search_authors, etc.
  4. Pass arguments β€” e.g. {"query": "climate change", "limit": 10}.
  5. Wire it into your agent β€” Claude / Cursor / Continue / LangChain / LlamaIndex, via Apify's MCP bridge or run-sync-get-dataset-items.

How much does the OpenAlex MCP Server cost?

PAY_PER_EVENT β€” $0.005 per tool-call. list_tools mode is free (discovery). Failed runs are not charged.

PlanTool callsCost
Quick100$0.50
Standard1,000$5.00
Deep10,000$50.00
Massive100,000$500.00

Per call, the OpenAlex MCP Server averages ~5 s of compute on 256 MB RAM and ~0.05 MB of bandwidth β€” fully covered by the per-event price.

Input parameters

FieldTypeDescription
modeenumcall_tool (charged) or list_tools (free).
tool_nameenumsearch_works, get_work, search_authors, get_author, search_institutions, get_institution, search_sources, search_concepts.
argumentsobjectTool arguments β€” see list_tools for the per-tool schema.
mailtostringOptional. Email passed to OpenAlex's polite-pool (~100k req/day).
reconstruct_abstractboolDefault true β€” rebuilds the abstract from OpenAlex's inverted index.

Output example

{
"openalex_id":"W2741809807",
"doi":"https://doi.org/10.7717/peerj.4375",
"title":"The state of OA: a large-scale analysis of the prevalence and impact of Open Access articles",
"type":"article",
"publication_year":2018,
"publication_date":"2018-02-13",
"language":"en",
"cited_by_count":1132,
"referenced_works_count":62,
"open_access_status":"gold",
"open_access_url":"https://peerj.com/articles/4375.pdf",
"is_oa":true,
"primary_source":{
"id":"S2738156628",
"display_name":"PeerJ",
"issn_l":"2167-8359",
"type":"journal"
},
"authors":["Heather Piwowar","Jason Priem","Vincent Larivière","Juan Pablo Alperin"],
"n_authors":8,
"concepts":[
{"id":"C2779343474","display_name":"Open access","level":2,"score":0.94}
],
"abstract":"Despite growing interest in Open Access (OA) to scholarly literature ..."
}

Use cases for the OpenAlex MCP Server

  • AI research assistants β€” let Claude or Cursor pull verifiable citations from OpenAlex during a literature review.
  • Grant writing & competitive intelligence β€” surface the top-cited authors and institutions on a topic in seconds.
  • CRM / lead-gen enrichment for academic SaaS β€” enrich researcher records with h-index, ORCID, last institution, country.
  • Bibliometric dashboards β€” track OA adoption, citation counts, journal coverage across a discipline.
  • Knowledge graph builders β€” pull OpenAlex's concept taxonomy and author–institution edges into Neo4j / RDF.
  • Systematic reviews β€” automate PRISMA-style filtering by year, OA status, concept score.

API examples

Python (Apify client):

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("dltik/mcp-server-openalex").call(run_input={
"mode":"call_tool",
"tool_name":"search_works",
"arguments":{"query":"transformer architecture","limit":5,"sort":"cited_by_count:desc"}
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item.get("title"),"β€”", item.get("cited_by_count"))

curl (synchronous run):

curl-X POST "https://api.apify.com/v2/acts/dltik~mcp-server-openalex/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"mode": "call_tool",
"tool_name": "get_work",
"arguments": {"doi": "10.1038/s41586-021-03819-2"}
}'

FAQ β€” OpenAlex MCP Server

Why use the OpenAlex MCP Server on Apify vs hitting api.openalex.org directly? Maintenance + agent-shape. The OpenAlex MCP Server normalizes nested objects, reconstructs abstracts from OpenAlex's inverted index, exposes a tool dispatcher native to MCP, and bills per call β€” no rate-limit handling, no schema-drift code in your agent.

What's the polite pool and do I need to set mailto? OpenAlex serves anonymous requests with stricter limits. Passing an email via mailto puts you in the "polite pool" with ~100k req/day. The OpenAlex MCP Server injects a maintainer email by default β€” set your own mailto for high-volume usage.

How are abstracts returned? OpenAlex stores abstracts as an inverted index ({word: [positions]}). When reconstruct_abstract: true (default), the OpenAlex MCP Server rebuilds the plain-text abstract into the abstract field. The raw abstract_inverted_index is always kept too.

How do I paginate beyond 10,000 results? Pass cursor: "*" on the first call, then forward the next cursor returned by OpenAlex. The OpenAlex MCP Server exposes the cursor argument on search_works for exactly this.

Is there a free tier? list_tools is always free (catalog discovery). call_tool is $0.005 per call, billed only on success.


⭐ Found the OpenAlex MCP Server useful? Bookmark it β€” it's the strongest signal for Apify Store visibility. β†’ Bookmark on the Apify Store

Other scrapers by dltik

ActorWhat it does
arXiv MCP Server5 tools for AI agents to query arXiv preprints
HackerNews MCP Server6 tools over 30M HN stories + comments
SEC EDGAR MCP Server10K+ US public companies for AI agents
Pappers MCP Server26M French companies (SIREN, dirigeants, finances)
Wikipedia MCP ServerSearch, summaries, sections β€” all Wikipedia languages

License: MIT Β· Author: dltik

You might also like

MCP Server: Rss

dltik/mcp-server-rss

MCP Server: Rss: an MCP server exposing 4 tools for AI agents. HTTP-only, no API key. Pay $0.005/tool-call.

OpenAlex Scraper

gio21/openalex-scraper

Scrape OpenAlex - the free open catalog of scholarly works (250M+ papers, 100M+ authors, 100K institutions). Search across works, authors, institutions, concepts, journals. Returns title, abstract, authors, citations, DOI, OA status, and more.

OpenAlex Scraper

crawlerbros/openalex-scraper

Scrape OpenAlex the free, open catalog of 250M+ scholarly works, authors, institutions, and concepts. Search papers, authors, or fetch by OpenAlex ID / DOI. Pulls citations, open-access status, abstracts, authorships, journals, topics, and more.

OpenAlex Scraper

automation-lab/openalex-scraper

Extract research papers from OpenAlex β€” titles, authors, citations, institutions, and open access links.

πŸ‘ User avatar

Stas Persiianenko

9

OpenAlex Scraper - Scholarly Works, Authors & Citations Graph

jungle_synthesizer/openalex-works-crawler

Scrape OpenAlex, the open scholarly graph with 250M+ works, 100M+ authors, and 120K+ institutions. Extract titles, abstracts, authors, ORCIDs, institutions, concepts, citations, open-access flags, and grants.

πŸ‘ User avatar

BowTiedRaccoon

3

Academic Research & Papers Scraper (OpenAlex)

rupom888/academic-research-scraper

Search 200M+ academic papers, researchers, and institutions via OpenAlex API. Completely free, no API key needed. Get paper titles, abstracts, DOIs, citations, authors, open access links, and concepts. Filter by year, paper type, open access, and field of study.

OpenAlex Scraper

shahidirfan/OpenAlex-Scraper

Extract scholarly data from OpenAlexβ€”titles, authors, institutions, venues, conceptsβ€”using this fast Apify actor. Get academic research in bulk via API, and export results as CSV, Excel, or HTML datasets for research, analytics, or discovery.

17

5.0

OpenAlex Scholarly Data Extractor

xtracto/openalex-scholarly

Extract scholarly works, authors, institutions, journals, publishers, and funders from OpenAlex β€” one record per row. 316M+ works. Public data, no key.

πŸ‘ User avatar

Farhan Febrian Nauval

1

OpenAlex Scholarly Works Scraper

dami_studio/openalex-scraper

Searches OpenAlex (250M+ scholarly works) by keyword and returns structured records: title, authors, institutions, venue, year, citation count, concepts, open-access link, and the full reconstructed abstract for literature reviews.

1

5.0