How to Use the Traction Guest MCP in CrewAI
Autonomous operations for visit management with Traction Guest using CrewAI's multi-agent collaboration model.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Traction Guest MCP to CrewAI
Create your Vinkius account to connect Traction Guest 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.
Coordinated Scheduling
Need to schedule a tour? The `create_group_visit` tool requires JSON input: name, scheduled date, expected attendees, host ID, and location. A specialized scheduling agent can use this. If the group visit needs modification, another agent runs `update_group_visit`. This simulates a full team effort—one agent researches the details, and another acts to update the record.
Visitor Arrival Monitoring
A dedicated security agent can monitor arrivals using `create_signin`, inputting visitor name, host ID, location ID, and purpose. To review history or confirm current status, it runs `list_signins`. The shared memory allows the monitoring agent to pass the successful sign-in data directly to the reporting agent for immediate logging.
Staff Directory Management
You can set up staff using `create_host` or, if you're onboarding many people at once, use `create_hosts_batch`. The results are stored and accessible to other agents. A separate agent responsible for oversight runs `list_hosts`, ensuring that the directory of authorized personnel is always current before any scheduling action.
Set up Traction Guest 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 Traction Guest tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Traction Guest Analyst",
goal="Access and analyze Traction Guest data via MCP.",
backstory="Expert analyst with direct Traction Guest access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Traction Guest 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="Traction Guest Analyst",
goal="Access and analyze Traction Guest data via MCP.",
backstory="Expert analyst with direct Traction Guest access.",
tools=mcp_tools,
)
task = Task(
description="List recent Traction Guest 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 Traction Guest. 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 Traction Guest MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Traction Guest MCP today
We host it, we monitor it, we maintain it. You just paste one token.