A Model Context Protocol server for the Elsevier Scopus API
Project description
Scopus MCP Server
中文 | English
This is a Model Context Protocol (MCP) server that provides access to the Elsevier Scopus API. It allows AI assistants to search for academic papers, retrieve abstracts, and look up author profiles.
Configuration
Setup Steps
- Go to Elsevier Developer Portal to apply for an API key.
- Fill the key into
config.jsonin the project folder. - Edit
MCP_tool_config.json, modifying the folder path (pay attention to the slash direction). - Finally, import the configuration into your MCP client (e.g., Claude Desktop) by copying the content of
MCP_tool_config.json.
🚀 Quick Start (Zero Setup)
If you use Claude Desktop, you can skip downloading the code and just configure it directly:
- Get Key: Get a free API Key from Elsevier Developer Portal.
- Configure: Edit
%APPDATA%\Claude\claude_desktop_config.json(Windows) or~/Library/Application Support/Claude/claude_desktop_config.json(macOS). - Add:
{
"mcpServers": {
"scopus-assistant": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/qwe4559999/scopus-mcp.git",
"scopus-mcp"
],
"env": {
"SCOPUS_API_KEY": "PUT_YOUR_KEY_HERE"
}
}
}
}
(Requires uv installed)
Using with Trae
In Trae Settings -> MCP Servers -> Click Add -> Select Manual Configuration (JSON), then paste:
{
"mcpServers": {
"scopus-assistant": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/qwe4559999/scopus-mcp.git",
"scopus-mcp"
],
"env": {
"SCOPUS_API_KEY": "PUT_YOUR_KEY_HERE"
}
}
}
}
Using with Cursor
- Open Cursor Settings -> Features -> MCP Servers.
- Click + Add New MCP Server.
- Fill in the details:
- Name:
scopus-mcp - Type:
command(stdio) - Command:
uvx --from git+https://github.com/qwe4559999/scopus-mcp.git scopus-mcp
- Name:
- Important: You need to set
SCOPUS_API_KEYin your system environment variables.
Installation
- Ensure you have Python 3.10+ installed.
- Install dependencies:
pip install .
Usage
Running the Server
You can run the server using uvx (recommended) or directly with python.
# Using uvx
uvx --from . scopus-mcp
# Or directly
python -m scopus_mcp.server
Available Tools
-
search_scopus- Searches the Scopus database using the standard query syntax.
- Arguments:
query(string): The search query (e.g.,TITLE("Artificial Intelligence")).count(integer): Number of results to return (default: 5).sort(string): Sort order (e.g.,coverDate).
-
get_abstract_details- Retrieves detailed information for a specific document.
- Arguments:
scopus_id(string): The Scopus ID of the document.
-
get_author_profile- Retrieves an author's profile information.
- Arguments:
author_id(string): The Scopus Author ID.
Development
Run tests with:
pytest
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments & Contributors
- thinktraveller - Initial Work & Core Development
- qwe4559999 - Maintainer
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scopus_mcp-0.1.1.tar.gz.
File metadata
- Download URL: scopus_mcp-0.1.1.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a1be47a76c5df50eb49a11ff52c0cc0a0e0fb3940601bc3ea25d2d9dd4de0c
|
|
| MD5 |
2bd7fa1f7571cc9e6255dad0734fba5e
|
|
| BLAKE2b-256 |
2e97483acd27babf38b52c07618d8fffbedbb649b0e3db15f7e69b7c867d508a
|
File details
Details for the file scopus_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: scopus_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cce2bdbc7d149539bcc63ac0ded3504958b142ad54a436eb5135534eab327f6
|
|
| MD5 |
6b406dceca9652b6e7d66073fbaaefc5
|
|
| BLAKE2b-256 |
ac26c5043dcb2968adb6cfcec2683e92354d4e068bd8f5bd474f10bba40ddeba
|