scopus-mcp
A Model Context Protocol server for the Elsevier Scopus API
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"scopus-mcp": {
"args": [
"scopus-mcp@0.1.8"
],
"command": "uvx"
}
}
}
可用工具 (5 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
tavily_search 14 个参数 需填 1 项
Search the web for current information on any topic. Use for news, facts, or data beyond your knowledge cutoff. Returns snippets and source URLs.
必填参数:query
tavily_extract 6 个参数 需填 1 项
Extract content from URLs. Returns raw page content in markdown or text format.
必填参数:urls
tavily_crawl 11 个参数 需填 1 项
Crawl a website starting from a URL. Extracts content from pages with configurable depth and breadth.
必填参数:url
tavily_map 8 个参数 需填 1 项
Map a website's structure. Returns a list of URLs found starting from the base URL.
必填参数:url
tavily_research 2 个参数 需填 1 项
Perform comprehensive research on a given topic or question. Use this tool when you need to gather information from multiple sources to answer a question or complete a task. Returns a detailed response based on the research findings.
必填参数:input
服务介绍
Scopus MCP Server
<!- - mcp-name: io.github.qwe4559999/scopus-mcp - ->
中文 | English
💡 Check out the Interaction Guide & Prompt Examples to see how to chat with this tool!
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.
Please note that requesting an Elsevier Scopus API key generally requires that your organization or institution has a subscription to Elsevier database services. Additionally, to run this tool without manual setup, your device must have the uv package manager installed.
# Configuration
# # Setup Steps
- Go to Elsevier Developer Portal to apply for an API key.
- Create a
config.jsonfile in the project root (or copy fromconfig.json.example) and fill in your key:{ "api_key": "YOUR_KEY_HERE" } - 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)
Prerequisite: You must have uv installed.
- Windows:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex" - macOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
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. (⚠️ Note: Educational/Institutional email is recommended; public email domains may be rejected).
- 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": [
"scopus-mcp"
],
"env": {
"SCOPUS_API_KEY": "PUT_YOUR_KEY_HERE"
}
}
}
}
(If you don't have uv, see [Installation](# installation) for manual setup)
# # Using with Trae
In Trae Settings -> MCP Servers -> Click Add -> Select Manual Configuration (JSON), then paste:
{
"mcpServers": {
"scopus-assistant": {
"command": "uvx",
"args": [
"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 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