Scopus MCP Server
Provides access to the Elsevier Scopus API, enabling AI assistants to search for academic papers, retrieve detailed abstracts, and look up author profiles. It facilitates bibliometric research and scholarly data analysis through natural language commands.
README
Scopus MCP Server
<!-- mcp-name: io.github.qwe4559999/scopus-mcp -->
中文 | 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": [
"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": [
"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
<a href="https://github.com/qwe4559999/scopus-mcp/graphs/contributors"> <img src="https://contrib.rocks/image?repo=qwe4559999/scopus-mcp" /> </a>
- thinktraveller - Initial Work & Core Development
- qwe4559999 - Maintainer
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.