How to Use the Cliengo MCP in CrewAI
Deploy autonomous CrewAI agents to monitor, analyze, and escalate your Cliengo chat queues.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Cliengo MCP to CrewAI
Create your Vinkius account to connect Cliengo 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.
Multi-agent lead qualification
The `list_cliengo_leads` tool on this MCP Server allows your researcher agent to pull the daily intake of new contacts. It hands that raw list over to an analyst agent to score the prospects based on your custom criteria. Deep diving into a specific profile uses `get_lead_details`. The analyst extracts the exact contact history and delegates the follow-up task to an outbound communication agent.
CrewAI conversational auditing
Fetching full session logs is handled by `get_chat_history`. A dedicated quality assurance agent reads the transcript to ensure your human operators followed standard operating procedures. Spot-checking specific users requires `get_contact_messages`. The QA agent compiles a report of negative interactions and passes it up the hierarchy to a manager agent for review.
Map internal agent capacity
Querying `list_cliengo_users` via MCP gives your CrewAI system visibility into your human workforce. A dispatcher agent checks who is currently active before assigning a complex support ticket. Auditing your active deployments happens via `list_cliengo_websites`. A technical agent verifies that the chat widgets are running on the correct domains and reports any discrepancies.
Set up Cliengo 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 Cliengo tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Cliengo Analyst",
goal="Access and analyze Cliengo data via MCP.",
backstory="Expert analyst with direct Cliengo access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Cliengo 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="Cliengo Analyst",
goal="Access and analyze Cliengo data via MCP.",
backstory="Expert analyst with direct Cliengo access.",
tools=mcp_tools,
)
task = Task(
description="List recent Cliengo 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 Cliengo. 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 Cliengo MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Cliengo MCP today
We host it, we monitor it, we maintain it. You just paste one token.