elsevier-mcp

elsevier-mcp

MCP server for the Elsevier Developer APIs. Gives Claude Code access to Scopus, ScienceDirect, and other Elsevier academic databases.

Category
Visit Server

README

elsevier-mcp

MCP server for the Elsevier Developer APIs. Gives Claude Code access to Scopus, ScienceDirect, and other Elsevier academic databases.

Quick Start

Get a free API key at dev.elsevier.com, then pick an install method below.

Claude Code — plugin marketplace (recommended)

This repository is a Claude Code plugin marketplace. Add it, then install the plugin — no clone or npm install required:

/plugin marketplace add kemalabuteliyte/elsevier-mcp
/plugin install elsevier-mcp@elsevier-tools

The plugin ships a self-contained server bundle, so it just works once installed. Provide your API key through your environment before launching Claude Code:

export ELSEVIER_API_KEY=your_api_key_here
# optional — institutional access unlocks all 14 tools:
# export ELSEVIER_INST_TOKEN=your_institutional_token
# export ELSEVIER_ENABLE_ALL_TOOLS=true

Restart Claude Code. The elsevier tools are now available. Done.

Claude Desktop — one-click install

Download the latest .mcpb file from Releases, then open it with Claude Desktop. You'll be prompted to enter your API key during setup.

Manual install (from source)

git clone https://github.com/kemalabuteliyte/elsevier-mcp.git
cd elsevier-mcp
npm install
npm run build

Then add to your Claude Code settings:

{
  "mcpServers": {
    "elsevier": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/elsevier-mcp/dist/index.js"],
      "env": {
        "ELSEVIER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Or via CLI:

claude mcp add elsevier -e ELSEVIER_API_KEY=your_key -- node /absolute/path/to/elsevier-mcp/dist/index.js

Available Tools

These 6 tools work with a free Elsevier API key:

Tool Description
scopus_search Search Scopus for scholarly documents by query
abstract_retrieval Retrieve abstract/metadata by DOI, Scopus ID, EID, PII, or PubMed ID
article_retrieval Retrieve ScienceDirect article by DOI, PII, or EID
serial_title_search Search for journals by title, ISSN, publisher, or subject
serial_title_retrieval Retrieve journal details by ISSN
subject_classifications Look up Scopus/ScienceDirect subject area codes and descriptions

Enabling All Tools (Institutional Access)

8 additional tools require institutional network access, an institutional token, or additional API subscriptions. Enable with ELSEVIER_ENABLE_ALL_TOOLS=true:

{
  "mcpServers": {
    "elsevier": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/elsevier-mcp/dist/index.js"],
      "env": {
        "ELSEVIER_API_KEY": "your_api_key_here",
        "ELSEVIER_INST_TOKEN": "your_institutional_token",
        "ELSEVIER_ENABLE_ALL_TOOLS": "true"
      }
    }
  }
}
Tool Description Requires
author_search Search for authors in Scopus Institutional access
affiliation_search Search for institutions and affiliations Institutional access
author_retrieval Retrieve author profile by ID, EID, or ORCID Institutional access
affiliation_retrieval Retrieve institution details by ID or EID Institutional access
citation_count Get citation counts (supports batch lookup) API subscription
citations_overview Detailed citation overview with yearly breakdowns API subscription
plumx_metrics PlumX altmetrics (usage, captures, social media) Institutional access
fulltext_retrieval Retrieve full text of a ScienceDirect article as plain text Institutional access

To get institutional access:

  • Connect from a university/institutional network with a Scopus subscription
  • Or request an institutional token from apisupport@elsevier.com
  • The server automatically attempts IP-based authentication on 401 errors

Example Queries

Scopus search uses Boolean syntax with field codes:

  • TITLE(machine learning) AND PUBYEAR > 2020
  • AUTH(Einstein) AND TITLE(relativity)
  • AFFIL(MIT) AND KEY(quantum computing) AND PUBYEAR = 2024
  • DOI(10.1016/j.jclepro.2020.121092)

Environment Variables

Variable Required Description
ELSEVIER_API_KEY Yes API key from dev.elsevier.com
ELSEVIER_INST_TOKEN No Institutional token for expanded access
ELSEVIER_ENABLE_ALL_TOOLS No Set to true to enable all 13 tools

Troubleshooting

  • 401 error: Your API key lacks entitlements for this endpoint. You may need institutional access or an institutional token.
  • 403 error: Your API key doesn't have the required subscription for this resource.
  • 429 error: Rate limit exceeded. Elsevier quotas reset weekly.
  • No results: Try broadening your query or using different field codes.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured