How to Use the NeverBounce MCP in CrewAI
Deploy a crew of autonomous agents on CrewAI to manage your entire NeverBounce email verification pipeline, from upload to cleanup.
Works with every AI agent you already use
…and any MCP-compatible client
Connect NeverBounce MCP to CrewAI
Create your Vinkius account to connect NeverBounce 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.
Delegate Email Cleaning to a Crew
With CrewAI, you assign specific roles to different agents. You can have a 'Scout' agent whose only job is to watch a folder or API for new email lists, using `create_job_from_url` to submit them to NeverBounce. A second agent, the 'Manager,' then takes over. Its task is to periodically run `get_job_status`. Once a job is complete, it passes the job ID to a third 'Processor' agent, which uses `get_job_results` to fetch the clean data and load it into your database.
Build Autonomous Monitoring Agents
You can create a 'Finance' agent whose only purpose is to watch your NeverBounce account. Give it a task to run `get_account_info` every hour. If credits drop below a certain threshold, it can trigger another agent to send a notification to a Slack channel. Another good role is a 'Janitor' agent. This agent can run `list_jobs` once a day. If it finds jobs that are old or failed, it can use the `delete_job` tool to automatically clean up your NeverBounce account, keeping things tidy without any human intervention.
Connect Your CrewAI Team to NeverBounce
Connecting your crew is dead simple. You just pass the MCP Server URL directly into your Agent's `mcps` parameter. CrewAI handles the rest, making all the NeverBounce tools available to that agent for use in its tasks. For more granular control, you can use `MCPServerHTTP` to selectively expose tools. For example, your 'Finance' agent might only get access to `get_account_info`, while the 'Manager' agent gets all the job-related tools. This enforces a clear separation of duties within your autonomous crew.
Set up NeverBounce 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 NeverBounce tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="NeverBounce Analyst",
goal="Access and analyze NeverBounce data via MCP.",
backstory="Expert analyst with direct NeverBounce access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent NeverBounce 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="NeverBounce Analyst",
goal="Access and analyze NeverBounce data via MCP.",
backstory="Expert analyst with direct NeverBounce access.",
tools=mcp_tools,
)
task = Task(
description="List recent NeverBounce 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 NeverBounce. 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 NeverBounce MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the NeverBounce MCP today
We host it, we monitor it, we maintain it. You just paste one token.