Scopus MCP Server

Scopus MCP Server

Scopus MCP Server enables researchers to interact with the Scopus database through natural language. It provides tools for searching documents, fetching abstracts, finding author profiles, and viewing citation overviews.

Category
Visit Server

README

Scopus MCP Server

A local MCP server that wraps the Elsevier Scopus APIs, giving Claude Code four tools:

  • scopus_search — search Scopus documents by keyword, title, author, affiliation, etc.
  • scopus_get_abstract — fetch a full abstract + metadata by Scopus ID / DOI / EID
  • scopus_search_authors — find author profiles by name/affiliation
  • scopus_get_author_profile — full author profile (h-index, affiliation, ORCID, etc.) by Scopus Author ID
  • scopus_get_citation_overview — year-by-year citation counts for one or more documents

1. Get an API key

Register at https://dev.elsevier.com/apikey to get a Scopus/Elsevier API key. Some endpoints (especially abstract/citation data) require your key to be used from an IP range or network your institution has registered with Elsevier — if you get 403 errors, that's usually why.

If you also have an institutional token, note it too (optional).

2. Install dependencies

cd "scopus-mcp-server"
pip install -r requirements.txt

3. Set your API key

Set it as an environment variable — never hardcode it in the source or paste it into chat. Pick one option:

Windows PowerShell (current session only):

$env:SCOPUS_API_KEY = "your-key-here"

Windows (persistent, current user):

setx SCOPUS_API_KEY "your-key-here"

(Open a new terminal afterward for setx to take effect.)

Optional institutional token:

setx SCOPUS_INSTTOKEN "your-insttoken-here"

4. Register the server with Claude Code

From an interactive terminal (this step needs claude mcp, which isn't available in a non-interactive session):

claude mcp add scopus -- python "C:\Users\Hype AMD\OneDrive\Desktop\Claude Cowork\scopus-mcp-server\server.py"

This registers it as a stdio MCP server that Claude Code will launch on demand. Verify with claude mcp list, then restart/reload Claude Code so it picks up the new server.

5. Try it

Ask Claude something like:

  • "Search Scopus for papers on CRISPR gene editing published after 2022"
  • "Get the abstract for Scopus ID 85123456789"
  • "Find the Scopus author profile for John Smith at MIT"
  • "How has paper 85123456789 been cited over the last 5 years?"

Notes

  • All tools are read-only (no writes to Scopus).
  • Responses default to Markdown; pass response_format: "json" for structured output.
  • If you see Error: SCOPUS_API_KEY environment variable is not set, the server process didn't inherit the env var — set it persistently (setx) and open a fresh terminal / restart Claude Code.
  • If you see 403 errors, your key likely isn't entitled for that endpoint or needs to be called from your institution's registered network.

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