openalex-research-mcp 0.2.2 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,24 +2,46 @@
2
2
 
3
3
  A Model Context Protocol (MCP) server that provides access to OpenAlex, a comprehensive open catalog of scholarly papers, authors, institutions, and more. Designed to empower AI assistants to conduct literature reviews, analyze research trends, and map the scholarly landscape.
4
4
 
5
+ ## Quick Install
6
+
7
+ ```bash
8
+ npx openalex-research-mcp setup
9
+ ```
10
+
11
+ This auto-detects your Claude Desktop config, prompts for your email and optional API key, writes the config, and verifies connectivity — all in one step. Restart Claude Desktop when done.
12
+
13
+ **Flags:**
14
+ - `--print` — print the config JSON without writing anything
15
+ - `--config-path` — print the detected config file path and exit
16
+ - `--email you@example.com --api-key YOUR_KEY` — non-interactive / scripted mode
17
+
5
18
  **Features:**
6
19
  - ⚡️ **In-memory caching** with TTL for fast repeated requests
7
20
  - 🔄 **Retry logic** with exponential backoff for resilient API calls
8
21
  - ✅ **Input validation** with Zod schemas
9
22
  - 🏥 **Health check** tool for monitoring
10
- - 📊 **18+ specialized tools** for research
23
+ - 📊 **31 specialized tools** for research
24
+ - 🎓 **Curated journal presets** — UTD24, FT50, AJG/ABS tiers, top AI conferences, and more
25
+ - 🏛️ **Institution group presets** — Ivy League, Top US, INSEAD+London, and more
11
26
 
12
27
  ## Features
13
28
 
14
- Access 240+ million scholarly works through 18 specialized tools:
29
+ Access 240+ million scholarly works through 31 specialized tools:
15
30
 
16
31
  ### Literature Search & Discovery
17
- - **search_works**: Advanced search with Boolean operators, filters, and sorting
18
- - **get_work**: Get detailed metadata for a specific work
32
+ - **search_works**: Advanced search with Boolean operators, venue/journal filters, institution filters, citation thresholds, and sorting
33
+ - **get_work**: Get complete metadata for a specific work (all authors, full abstract, references)
19
34
  - **get_related_works**: Find similar papers based on citations and topics
20
35
  - **search_by_topic**: Explore literature in specific research domains
21
36
  - **autocomplete_search**: Fast typeahead search for all entity types
22
37
 
38
+ ### Credibility-Gated Search (Journal & Conference Presets)
39
+ - **list_journal_presets**: List all available named journal/conference and institution group presets
40
+ - **search_in_journal_list**: Search within a named preset list (UTD24, FT50, AJG 4*/4/3, top AI conferences, etc.) with optional institution filtering
41
+ - **search_works_in_venue**: Search within a specific venue by name, ISSN, or OpenAlex ID
42
+ - **get_top_venues_for_field**: Discover top journals/conferences in a field ranked by h-index
43
+ - **check_venue_quality**: Inspect h-index, impact, and indexing status of any venue
44
+
23
45
  ### Citation Analysis
24
46
  - **get_work_citations**: Forward citation analysis (who cites this work)
25
47
  - **get_work_references**: Backward citation analysis (what this work cites)
@@ -27,11 +49,19 @@ Access 240+ million scholarly works through 18 specialized tools:
27
49
  - **get_top_cited_works**: Find the most influential papers in a field
28
50
 
29
51
  ### Author & Institution Analysis
30
- - **search_authors**: Find researchers with publication and citation metrics
52
+ - **search_authors**: Find researchers with h-index, citation metrics, and affiliations
53
+ - **search_authors_by_expertise**: Find leading experts in a topic ranked by h-index
54
+ - **get_author_profile**: Full research profile: h-index, i10-index, top works, recent works
31
55
  - **get_author_works**: Analyze an author's publication history
32
56
  - **get_author_collaborators**: Map co-authorship networks
33
57
  - **search_institutions**: Find leading academic institutions
34
58
 
59
+ ### High-Value Citation Finding
60
+ - **find_review_articles**: Find review papers and meta-analyses (high-value context citations)
61
+ - **find_seminal_papers**: Find foundational "must-cite" papers (high citation count, published 5+ years ago)
62
+ - **find_open_access_version**: Find freely available versions of papers with PDF links
63
+ - **batch_resolve_references**: Validate up to 20 DOIs/IDs at once
64
+
35
65
  ### Research Landscape & Trends
36
66
  - **analyze_topic_trends**: Track research evolution over time
37
67
  - **compare_research_areas**: Compare activity across different fields
@@ -40,7 +70,72 @@ Access 240+ million scholarly works through 18 specialized tools:
40
70
 
41
71
  ### Entity Lookup
42
72
  - **get_entity**: Get detailed information for any OpenAlex entity
43
- - **search_sources**: Find journals, conferences, and publication venues
73
+ - **search_sources**: Find journals, conferences, and publication venues (sorted by h-index)
74
+
75
+ ---
76
+
77
+ ## Journal & Conference Presets
78
+
79
+ Presets let you restrict searches to credible, high-impact venues and institution groups without manually specifying ISSNs or names. Call `list_journal_presets` to see all available options at any time.
80
+
81
+ ### Available Journal/Conference Presets
82
+
83
+ | Key | Name | Description |
84
+ |---|---|---|
85
+ | `utd24` | UT Dallas 24 | Official UTD journal list for business school rankings (34 journals) |
86
+ | `ft50` | FT50 Journals | Financial Times 50 journals for MBA/business school rankings |
87
+ | `abs4star` | AJG/ABS 4\* | World elite journals — the most prestigious tier in the ABS Guide |
88
+ | `abs4` | AJG/ABS 4 | Top international journals — excellent quality |
89
+ | `abs3` | AJG/ABS 3 | Internationally recognised journals — solid quality |
90
+ | `ms_misq_ops` | MS + IS + Operations | Management Science, M&SOM, MIS Quarterly, ISR, JMIS, OR, POM |
91
+ | `top_ai_conferences` | Top AI Conferences | NeurIPS, ICML, ICLR, AAAI, CVPR, ICCV, ACL, EMNLP, KDD, IJCAI |
92
+ | `top_cs_conferences` | Top CS Conferences | SOSP, OSDI, SIGCOMM, CHI, VLDB, SIGMOD, PLDI |
93
+ | `nature_science` | Nature & Science Family | Nature, Science, and branded sub-journals |
94
+
95
+ ### Available Institution Group Presets
96
+
97
+ | Key | Name | Institutions |
98
+ |---|---|---|
99
+ | `harvard_stanford_mit` | Harvard / Stanford / MIT | Harvard, Stanford, MIT |
100
+ | `ivy_league` | Ivy League | All 8 Ivy League universities |
101
+ | `top_us` | Top US Research Universities | Harvard, Stanford, MIT, Berkeley, Caltech, Chicago, Princeton, Yale, Columbia, Penn |
102
+ | `top_us_business` | Top US Business Schools | Harvard, Stanford, Wharton, Booth, Kellogg, Sloan, Columbia, Stern, Darden, Tuck |
103
+ | `insead_london` | INSEAD + London Schools | INSEAD, LBS, Imperial, LSE, Oxford, Cambridge |
104
+ | `top_global_business` | Top Global Business Schools | Best of `top_us_business` + INSEAD, LBS, Oxford, Cambridge |
105
+ | `top_china` | Top Chinese Universities | Peking, Tsinghua, Fudan, SJTU, ZJU, CUHK, HKU |
106
+
107
+ ### Example Preset Queries
108
+
109
+ ```
110
+ # AI papers in UTD24 journals
111
+ search_in_journal_list(query="artificial intelligence", journal_list="utd24")
112
+
113
+ # AI papers in Management Science + M&SOM
114
+ search_in_journal_list(query="artificial intelligence", journal_list="ms_misq_ops")
115
+
116
+ # AI papers in FT50 journals since 2020
117
+ search_in_journal_list(query="artificial intelligence", journal_list="ft50", from_year=2020)
118
+
119
+ # AI papers in top AI conferences
120
+ search_in_journal_list(query="artificial intelligence", journal_list="top_ai_conferences")
121
+
122
+ # AI papers in AJG 4* journals
123
+ search_in_journal_list(query="artificial intelligence", journal_list="abs4star")
124
+
125
+ # AI papers in UTD24 journals by Harvard/Stanford/MIT authors
126
+ search_in_journal_list(query="artificial intelligence", journal_list="utd24", institution_group="harvard_stanford_mit")
127
+
128
+ # AI papers by professors at INSEAD
129
+ search_works(query="artificial intelligence", author_institution="INSEAD")
130
+
131
+ # AI papers by anyone from Harvard, Stanford, or MIT
132
+ search_works(query="artificial intelligence", institution_group="harvard_stanford_mit")
133
+ ```
134
+
135
+ ### Requesting Additional Presets
136
+
137
+ > **📬 Want a new journal group added?**
138
+ > The preset lists (UTD24, FT50, AJG tiers, etc.) are curated in the source code. If your field uses a different ranking system — ABDC, VHB-JQ, CNRS, Norwegian list, discipline-specific lists, or any custom journal group — **open a GitHub issue** and I will add it. Include the list name, a short description, and the ISSNs or venue names. Community contributions via pull requests are also very welcome.
44
139
 
45
140
  ## Installation
46
141
 
@@ -177,6 +272,38 @@ Which countries are leading research in climate change mitigation?
177
272
 
178
273
  The assistant will use `analyze_geographic_distribution` to map research activity by country.
179
274
 
275
+ ### Example 7: Top-Journal Citation Search
276
+
277
+ ```
278
+ Find influential papers on "large language models" published in UTD24 journals since 2020
279
+ ```
280
+
281
+ The assistant will use `search_in_journal_list` with `journal_list="utd24"` and `from_year=2020`.
282
+
283
+ ### Example 8: Institution-Filtered Search
284
+
285
+ ```
286
+ Find papers on supply chain resilience published by researchers at Harvard, Stanford, or MIT
287
+ ```
288
+
289
+ The assistant will use `search_works` with `institution_group="harvard_stanford_mit"`.
290
+
291
+ ### Example 9: Seminal Paper Discovery
292
+
293
+ ```
294
+ What are the must-cite foundational papers in transformer models?
295
+ ```
296
+
297
+ The assistant will use `find_seminal_papers` with `min_citations=500` to find highly-cited, older foundational works.
298
+
299
+ ### Example 10: Expert Discovery
300
+
301
+ ```
302
+ Who are the top researchers in reinforcement learning, and where are they based?
303
+ ```
304
+
305
+ The assistant will use `search_authors_by_expertise` with `topic="reinforcement learning"`, sorted by h-index.
306
+
180
307
  ## Response Format
181
308
 
182
309
  The MCP server uses a **two-tier response system** to balance performance and completeness:
@@ -238,10 +365,14 @@ When you need **complete information** about a specific paper, use the `get_work
238
365
  Most search tools support these common parameters:
239
366
 
240
367
  - **from_year / to_year**: Filter by publication year range
241
- - **cited_by_count**: Filter by citation count (e.g., ">100")
368
+ - **min_citations**: Minimum citation count (e.g., `50` for solid papers, `200` for highly influential)
369
+ - **cited_by_count**: Citation filter with operator (e.g., `">100"`) — prefer `min_citations` for simplicity
370
+ - **source_name / source_issn / source_id**: Filter by journal or conference
371
+ - **author_institution**: Filter by author institution name (pipe-separated for OR, e.g., `"Harvard University|MIT"`)
372
+ - **institution_group**: Named institution group preset (e.g., `harvard_stanford_mit`)
242
373
  - **is_oa**: Filter for open access works only
243
- - **sort**: Sort results (relevance_score, cited_by_count, publication_year)
244
- - **page / per_page**: Pagination (max 200 per page)
374
+ - **sort**: Sort results (`relevance_score`, `cited_by_count:desc`, `publication_year:desc`)
375
+ - **page / per_page**: Pagination (max 200 per page; default 10, use 20 for broader coverage)
245
376
 
246
377
  ### Boolean Search
247
378