How to Use the Dixa MCP in LangChain
Chain your Dixa support operations together in LangChain to route tickets and audit agent presence using this MCP Server.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Dixa MCP to LangChain
Create your Vinkius account to connect Dixa 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.
Automate Queue Audits in LangChain
The `quick_agent_presence_audit` tool lets your LangChain agent pull real-time availability states across your support floor. You feed this presence data directly into LangChain routing chains to see who is actually free before pushing new work. Instead of letting Dixa tickets pile up, the LangChain agent evaluates agent availability and team rosters using `list_support_teams` to make immediate routing decisions. This keeps your queue distribution balanced without relying on manual pull systems that support agents often ignore.
Chain Deep Ticket Investigations
The `get_conversation_details` tool fetches the full history of a customer interaction so your LangChain agent can analyze the context. It pulls raw Dixa message logs and metadata, feeding them directly into your next LangChain link for sentiment analysis or drafting replies. By combining this with `search_conversations_by_subject`, your LangChain pipeline hunts down related historical Dixa tickets to find past resolutions. You get a complete picture of the customer's issue without making your team dig through the Dixa UI manually.
Monitor Live Bottlenecks Instantly
The `list_service_queues` tool exposes active Dixa queue backlogs so your LangChain agent can flag SLA risks before they blow up. It counts pending items and matches them against active staff counts to pinpoint exactly where Dixa support is stalling. When Dixa queues spike, the LangChain agent triggers a secondary lookup with `list_open_support_tickets` to extract the oldest unassigned cases. You get an automated alert system that knows when your response times are slipping and which tickets need eyes right now.
Set up Dixa 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 Dixa 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({
"dixa-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 Dixa 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 Dixa. 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 Dixa MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Dixa MCP today
We host it, we monitor it, we maintain it. You just paste one token.