How to Use the Elsevier ScienceDirect MCP in CrewAI
Assemble a crew of autonomous research agents to analyze Elsevier ScienceDirect using CrewAI.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Elsevier ScienceDirect MCP to CrewAI
Create your Vinkius account to connect Elsevier ScienceDirect to CrewAI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Assemble a Specialist Research Crew
In CrewAI, every agent has a job. You can build a 'Researcher Agent' whose only task is to run `search_sciencedirect` and find relevant papers. It then passes a list of article IDs to the next specialist in the crew, keeping tasks clean and separated. A 'Compliance Agent' can then take that list. It uses `get_article_entitlement` to check access rights and `get_hosting_permissions` to verify there are no embargo issues. It scrubs the list of any problem articles before handing a clean, vetted list to the 'Analyst Agent'. That's how you build an autonomous and reliable process.
Generate Summaries with a Writing Crew
Once an agent has a vetted list of articles, an 'Analyst Agent' gets to work. It uses `get_article` to pull the abstract or full text for each item, extracts the key findings, and prepares a structured output. Then, it hands off the findings and citation data—pulled with `get_article_metadata`—to a dedicated 'Writer Agent'. This final agent's job is to synthesize all the inputs into a coherent report, complete with correctly formatted citations. The crew works together, each member doing its one job perfectly.
Build a Content Monitoring System
Deploy a CrewAI team that acts as an autonomous monitoring service. A 'Scout Agent' can run `search_sciencedirect` on a schedule, looking for new publications that match specific keywords, authors, or topics. When the Scout finds a new article, it triggers an 'Indexer Agent'. This agent uses `get_serial_title` to get journal info and `get_subject_classifications` to apply topic tags. It then adds the new, categorized entry to your knowledge base. This MCP Server gives your crew the tools to keep your data current without any human input.
Set up Elsevier ScienceDirect MCP in CrewAI
Prerequisites
- Python 3.10+ installed
-
crewaipackage (pip install crewai) - Active Vinkius subscription with a valid endpoint token
- 1
Install CrewAI
Run
pip install crewaito install the framework. MCP support is built-in via themcpsparameter. - 2
Add the MCP URL to your agent
Pass your Vinkius endpoint directly to the
mcpslist. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. CrewAI handles tool discovery and caching automatically. - 3
Kick off your crew
Create a
Crewwith your agent and tasks. Callcrew.kickoff()— the agent will automatically invoke Elsevier ScienceDirect tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Elsevier ScienceDirect Analyst",
goal="Access and analyze Elsevier ScienceDirect data via MCP.",
backstory="Expert analyst with direct Elsevier ScienceDirect access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Elsevier ScienceDirect transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Prerequisites
- Python 3.10+ installed
-
crewai+crewai-toolspackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install crewai crewai-tools. TheMCPServerAdapterhandles lifecycle management and tool conversion. - 2
Connect with MCPServerAdapter
Use
MCPServerAdapteras a context manager withSseServerParameterspointing to your Vinkius endpoint. The adapter automatically manages connection lifecycle. - 3
Assign tools and run
Pass the returned
mcp_toolsto your agent'stoolsparameter. The adapter converts MCP tools to nativeBaseToolobjects compatible with all CrewAI agents.
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
from mcp import SseServerParameters
server_params = SseServerParameters(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
with MCPServerAdapter(server_params) as mcp_tools:
agent = Agent(
role="Elsevier ScienceDirect Analyst",
goal="Access and analyze Elsevier ScienceDirect data via MCP.",
backstory="Expert analyst with direct Elsevier ScienceDirect access.",
tools=mcp_tools,
)
task = Task(
description="List recent Elsevier ScienceDirect transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Elsevier ScienceDirect. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Elsevier ScienceDirect MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Elsevier ScienceDirect MCP today
We host it, we monitor it, we maintain it. You just paste one token.