How to Use the 99Minutos Express MCP in LangChain
Build logistics chains that book and track 99Minutos couriers with your LangChain agents.
Works with every AI agent you already use
…and any MCP-compatible client
Connect 99Minutos Express MCP to LangChain
Create your Vinkius account to connect 99Minutos Express to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Chain Together Logistics Operations
This isn't just about calling one tool. You build sequences. An agent can get a price with `get_rates`, book the shipment with `create_order`, and immediately start polling its location with `get_tracking`. Each step feeds the next one automatically. Everything is observable. With LangSmith, you can see the entire chain of thought, including the exact inputs and outputs for each 99Minutos tool call. It makes debugging complex agent logic dead simple.
Automate Warehouse and Coverage Checks
Manage your physical footprint from your agent. Your code can `list_stores` to see what's active, then use `list_coverage` to find gaps in your delivery zones. It's a direct way to check where you can and can't ship. Based on those results, your LangChain agent can decide to register a new dispatch point using `create_store`. This moves warehouse management from a manual task to an automated decision within your logistics pipeline.
Dynamic Order Control with LangChain
Give your agents control over active orders. They can run `list_orders` to get a manifest of everything in transit. From there, they can pull specific details with `get_order` for a closer look. This lets you build reactive systems. If an external event happens—like a fraud alert—your agent can find the relevant order and immediately void it with `cancel_order`. That's how you connect your business rules directly to your shipping operations using this MCP Server.
Set up 99Minutos Express MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes 99Minutos Express tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"99minutos-express-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent 99Minutos Express transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by 99Minutos App. 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 99Minutos Express MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the 99Minutos Express MCP today
We host it, we monitor it, we maintain it. You just paste one token.