mcp-openalex
Enables fetching work metadata by DOI.
Supports Elasticsearch syntax for advanced work queries via OpenAlex.
Allows searching and fetching authors by ORCID.
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., "@mcp-openalexsearch for papers on transformer models published in 2023"
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.
mcp-openalex
MCP server for the OpenAlex scholarly database. Gives AI agents tools to search and retrieve academic works, authors, and institutions.
Requirements
Python >= 3.12
OpenAlex API key (get one for free)
Related MCP server: academic-search-mcp
Installation
git clone https://github.com/ELumya/openalex-mcp.git
cd openalex-mcp
uv syncConfiguration
Copy the example env file and set your API key:
cp .env.example .env
# edit .env and set OPENALEX_API_KEY=your-key-hereRunning
STDIO (default — for local MCP clients):
uv run fastmcp run src/server.pyHTTP transport:
MCP_TRANSPORT=http MCP_HOST=127.0.0.1 MCP_PORT=8000 uv run fastmcp run src/server.pyMCP Tools
Tool | Description |
| Search works with filters (institution, year, date range, type, peer-reviewed) |
| Find works similar to a text using AI semantic search (matches by meaning) |
| Fetch full work metadata by OpenAlex ID or DOI — optionally extract PDF or request an LLM summary |
| Search author profiles by name or ORCID |
| Fetch full author profile by OpenAlex ID or ORCID |
| List all publications by a specific author |
| Search institutions by name, country, or type |
| Fetch full institution profile by OpenAlex ID or ROR |
Architecture
See ARCHITECTURE.md for system overview, module dependency graph, and tool flow diagrams.
TODOs
Add tests
Add CI/CD
Use cache for high rate requests
Scan code base for dead code
Add mermaid documentation
Unify concepts names (ie. Articles/Works)
Two levels of formating details in
filter: low (current one), medium (forfetch_*tools)
Tools Evolutions
Test OpenAlex support of Elasticsearch: YES!
Update work search tools descriptions, add: "Elasticsearch syntax"
Update tools descriptions, do not explain how it works but what you need to pass.
Update Author search tool, remove IDs handling (use
fetch_authorfor this)
in format_work_result add:
first 3 Authors
Primary topic classification
in _process_fulltext in fetch_work
Remove pure PDF handling, auto-detect format based on prompt presence (if prompt provided → LLM summary, else → markdown)
Use proper sampling parameters
Search
Semantic search, added as a new tool but can easily be integrated to work_search, we perform modifications at filters
build_works_query.Search by topics
Search foundational works
Citation
graph_work_citations
Authors
get_author_works: parameter
authorreplaced byauthor_id; accepts only OpenAlex ID or ORCID.graph_collaborations
Institutions
graph_colaborations
Global analysis tools
OpenAlex Topic comparaison
Geographical Region comparaison
Institutions comparaison
Trend deep analysis
License
Available Tools
8 toolsfetch_authorARead-only
Fetch full author profile including topics and institutions.
| Name | Required | Description | Default |
|---|---|---|---|
| author_id | Yes | OpenAlex A…, orcid:, scopus:, twitter:, or wikipedia: |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so the description adds moderate value by specifying the scope of data returned (profile, topics, institutions), but does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that conveys the tool's purpose with no unnecessary words, earning high marks for efficiency.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, a single well-documented parameter, and a readOnlyHint annotation, the description fully covers the necessary context for an agent to understand the tool's behavior and return value.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for the single parameter, so the baseline is 3. The description does not add significant meaning beyond the schema's own description of accepted ID formats.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Fetch') and the resource ('full author profile'), specifying that it includes topics and institutions, which distinguishes it from sibling tools like fetch_institution or fetch_work.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as get_author_works or search_authors. The description lacks context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_institutionARead-only
Fetch full institution profile.
| Name | Required | Description | Default |
|---|---|---|---|
| institution_id | Yes | OpenAlex I…, ror:, mag:, or wikidata: |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds the term 'full' implying complete data, but does not detail what fields are returned or any side effects. Annotations already declare readOnlyHint=true, so the description provides minimal extra behavioral context. It is adequate but not enriched beyond the structured data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that conveys the purpose efficiently. There is no redundant information, and every word is meaningful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, output schema present, read-only annotation), the description is minimally sufficient. However, it lacks details on error handling (e.g., what happens if the ID is invalid) and does not mention the output structure, relying solely on the output schema. This is adequate but not fully comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers the single parameter 'institution_id' with a description indicating acceptable ID formats (OpenAlex, ROR, MAG, Wikidata). With 100% schema coverage, the description adds no further meaning. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Fetch full institution profile', which uses a specific verb ('fetch') and identifies the resource ('institution profile'). This distinguishes it from siblings like 'fetch_author' and 'fetch_work', which operate on different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. For example, it doesn't mention that 'fetch_institution' is for retrieving a known institution by ID, while 'search_institutions' is for finding institutions by query. The agent is left to infer usage from context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_workARead-only
Fetch complete metadata for one work. Set fulltext=True to retrieve the open-access PDF as markdown, or pass a prompt to get an LLM summary instead.
| Name | Required | Description | Default |
|---|---|---|---|
| work_id | Yes | OpenAlex W…, DOI, pmid:, pmcid:, or mag: | |
| include_abstract | No | ||
| fulltext | No | Fetch open-access PDF as markdown | |
| prompt | No | If set, returns an LLM summary of the full text instead of raw markdown |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true. The description adds behavioral context by specifying the optional fulltext and prompt parameters, which allow retrieving PDF as markdown or an LLM summary, beyond the basic metadata fetch.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loading the core purpose. Every clause provides essential information without redundancy, making it easy for an agent to quickly understand the tool's capabilities.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 4 parameters, existing output schema, and annotations, the description covers the main operation and key optional behaviors. It omits detailing 'include_abstract' but the default and schema provide context. Overall, it is sufficiently complete for a retrieval tool with good structured support.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 75%, with 3 of 4 parameters described. The description adds meaning for 'fulltext' and 'prompt' by explaining their effects (PDF as markdown, LLM summary). It does not mention 'include_abstract', but the schema default and tool logic imply it, so the description adds value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Fetch complete metadata for one work' with a specific verb and resource. It also distinguishes from siblings by mentioning optional PDF retrieval or LLM summary, which are unique to this tool compared to 'fetch_author' or 'search_works'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives like 'search_works' or 'semantic_search_works'. There is no guidance on when not to use it, leaving the agent to infer from sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_author_worksARead-only
List all works by a given author.
| Name | Required | Description | Default |
|---|---|---|---|
| author_id | Yes | OpenAlex A…, orcid:, scopus:, … — use search_authors to find | |
| limit | No | ||
| page | No | ||
| sort | No | field:asc|desc |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, making the tool's read-only nature clear. The description adds no behavioral traits beyond listing works, so no additional value but no contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words, efficiently conveying the tool's purpose with minimal fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters and an output schema, the description is too sparse. It omits pagination, sorting behavior, and return format, leaving the agent to rely solely on schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (author_id and sort have descriptions), but the tool description adds no parameter details. Limit and page lack documentation in both schema and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'List all works by a given author' uses a specific verb and resource, clearly distinguishing it from siblings like fetch_work (single work) or search_works (general search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies you need an author_id, and the parameter description hints to use search_authors, but no explicit when-to-use or alternatives vs other tools like search_works.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_authorsARead-only
Search author profiles by name, optionally filtered by institution.
| Name | Required | Description | Default |
|---|---|---|---|
| query_string | Yes | Author name | |
| institution | No | Institution name or ID | |
| limit | No | ||
| page | No | ||
| min_works_count | No | ||
| sort | No | field:asc|desc |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so the description adds minimal behavioral info beyond the fact that it searches. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no wasted words. Could be slightly more informative without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters and high complexity, description is too minimal. Does not mention pagination, sorting, or other filters. Even with output schema, more details about search capabilities are needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Description adds general context for the search (by name, by institution), but schema already covers parameter descriptions for 50% of parameters. Does not detail other parameters like limit, page, sort.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb (search), resource (author profiles), and optional filter (institution). Distinguishes from siblings like fetch_author and search_institutions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (search by name with optional institution filter), but does not mention when not to use or provide alternatives. Context from sibling tools helps but is not in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_institutionsARead-only
Search institutions by name, optionally filtered by country or type.
| Name | Required | Description | Default |
|---|---|---|---|
| query_string | Yes | Institution name | |
| country_code | No | ISO country code, e.g. US, FR | |
| institution_type | No | education, healthcare, company, … | |
| limit | No | ||
| page | No | ||
| sort | No | field:asc|desc |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the tool is known to be a safe read operation. The description adds that it searches by name with filters, which is consistent but does not disclose additional behaviors beyond what annotations and schema provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that front-loads the core action. However, it omits important context about pagination and sorting, making it slightly under-specified for the number of parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description does not need to explain return values. However, despite covering the main search function and filters, it does not mention pagination, sorting, or the list nature of results, leaving gaps for a tool with 6 parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67%, but the description does not add meaning beyond the schema for the documented parameters (query_string, country_code, institution_type). It fails to compensate for the undocumented parameters 'limit', 'page', and 'sort', which are not mentioned in the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search', the resource 'institutions', and the primary parameter 'by name'. It distinguishes from sibling tools like 'fetch_institution' (which likely fetches by ID) and other search tools for different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when searching institutions by name with optional filters, but does not provide explicit guidance on when to use this tool versus alternatives (e.g., 'fetch_institution' for known IDs) or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_worksARead-only
Search works in OpenAlex by keyword, filtered by institution, date, type, and more.
| Name | Required | Description | Default |
|---|---|---|---|
| query_string | Yes | Keywords or Elasticsearch query | |
| institution | No | Institution name or ID | |
| publication_year | No | Filter by year | |
| from_date | No | Start date (YYYY or YYYY-MM-DD) | |
| to_date | No | End date (YYYY or YYYY-MM-DD) | |
| type | No | article, review, proceedings-article, … | |
| limit | No | ||
| page | No | ||
| peer_reviewed_only | No | ||
| search_range | No | title_abstract (default), title, abstract, general | title_abstract |
| sort | No | field:asc|desc, e.g. publication_year:desc |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true, indicating a safe read operation. The description adds no further behavioral context such as pagination limits, rate limits, or response structure. The description does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is clear and to the point, with no unnecessary words. It efficiently communicates the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 11 parameters and an output schema, the description is adequate but incomplete. It mentions key filter types but omits pagination (limit/page), sorting, and peer_reviewed_only. The presence of an output schema reduces the need to explain return values, but parameter usage could be clarified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 73% (8/11 parameters have descriptions). The description adds a generic 'and more' but does not elaborate on undocumented parameters like limit, page, or peer_reviewed_only. It provides minimal extra meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search works in OpenAlex by keyword, filtered by...', providing a specific verb and resource. It distinguishes from sibling tools like fetch_work or fetch_author by focusing on search and filtering, and from semantic_search_works which is a different search method.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives like semantic_search_works. The description implies usage for keyword-based search with filters but does not specify exclusion criteria or when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
semantic_search_worksARead-only
Find works similar to a given text using AI-powered semantic search. Searches by meaning rather than exact keyword match.
| Name | Required | Description | Default |
|---|---|---|---|
| query_string | Yes | Natural language prompt for semantic search | |
| institution | No | Institution name or ID | |
| publication_year | No | Filter by year | |
| from_date | No | Start date (YYYY or YYYY-MM-DD) | |
| to_date | No | End date (YYYY or YYYY-MM-DD) | |
| type | No | article, review, proceedings-article, … | |
| limit | No | ||
| page | No | ||
| peer_reviewed_only | No | ||
| sort | No | field:asc|desc, e.g. publication_year:desc |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so description doesn't contradict. However, description adds no new behavioral insights (e.g., ranking details, performance). Output schema exists, so return values are covered; still, description misses opportunity to describe post-search ordering or result characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no wasted words. First sentence states purpose, second differentiates from keyword search. Front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Description effectively communicates the tool's unique value (semantic vs. keyword) but does not mention output format, pagination, or limitations. Given output schema exists to document returns, description is largely complete for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 70% (7 of 10 parameters documented). The description adds no extra parameter details beyond 'given text', which is already evident from the tool name. With high coverage, baseline 3 is appropriate; no added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Find' and resource 'works', specifies 'AI-powered semantic search', and distinguishes from exact keyword match. This differentiates from sibling tools like search_works, which likely does keyword search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage for semantic vs. keyword search but provides no explicit guidance on when to use this tool versus alternatives like search_works, nor any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Every tool has a clearly distinct purpose: fetching profiles, searching by name/keyword/semantic, and listing works. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., fetch_author, search_works, semantic_search_works). Perfectly predictable.
8 tools is well-scoped for a scholarly database API, covering fetching, searching, and listing without unnecessary bloat.
Core operations are covered: fetching authors, institutions, works; searching with filters; and semantic search. Minor gaps like missing get_institution_works or concept endpoints are acceptable given the scope.
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 Connectors
Hosted MCP server for live public-data APIs and Skills for AI agents.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server enabling AI agents to search and retrieve scientific papers, citations, and author profiles from Crossref, OpenAlex, and Semantic Scholar with no API keys required.53MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for academic research using the OpenAlex API, enabling article search, details retrieval, and author profile lookup.
- FlicenseNot gradedqualityDmaintenanceAn advanced scholarly research MCP server that enables AI assistants to discover, fetch, process, and manage academic papers across multiple sources like arXiv, PubMed, and Semantic Scholar, with capabilities for summarization, citation analysis, and concept relationship extraction.2
- AlicenseAqualityCmaintenanceConnects AI agents to the OpenAlex scholarly database, enabling search and retrieval of works, authors, institutions, and sources via natural language.9MIT
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/ELumya/openalex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server