How to Use the Navisphere MCP in CrewAI
Deploy autonomous logistics teams with CrewAI. Assign agents to find, bid on, and monitor Navisphere freight around the clock.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Navisphere MCP to CrewAI
Create your Vinkius account to connect Navisphere 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 Freight Discovery to an Agent
Create a "Scout Agent" in your crew whose only job is to run the `search_available_loads` tool. It constantly scans Navisphere for freight that matches your specific lanes, equipment types, and rate targets. When the Scout finds a potential load, it passes the ID to an "Analyst Agent". This second agent uses `get_load_details` and `get_rate_estimate` to decide if the freight is profitable. This division of labor is what makes a crew so effective.
Build an Autonomous Bidding Crew with this MCP Server
Once the Analyst Agent approves a load, it tasks a "Bidder Agent" to execute `submit_bid`. If the bid is won via `accept_offer`, the task is handed off again. This is how you build a fully autonomous procurement pipeline. A "Tracker Agent" then takes over, using `track_shipment` and `get_tracking_events` to monitor the shipment's progress. It can be tasked to `update_shipment_status` in your own systems or alert a human supervisor if any issues arise.
Use a CrewAI Team for Logistics Operations
You can design a full logistics crew. One agent handles booking with `create_shipment`, another manages paperwork with `upload_shipment_documents`, and a supervisor agent oversees the whole process. CrewAI's shared memory means every agent knows the status of a given shipment. The agent handling documents knows when the tracking agent reports a delivery. This prevents crossed wires and dropped tasks.
Set up Navisphere 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 Navisphere tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Navisphere Analyst",
goal="Access and analyze Navisphere data via MCP.",
backstory="Expert analyst with direct Navisphere access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Navisphere 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="Navisphere Analyst",
goal="Access and analyze Navisphere data via MCP.",
backstory="Expert analyst with direct Navisphere access.",
tools=mcp_tools,
)
task = Task(
description="List recent Navisphere 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 Navisphere. 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 Navisphere MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Navisphere MCP today
We host it, we monitor it, we maintain it. You just paste one token.