How to Use the BOSSDesk MCP in LangChain
Connect your LangChain agents to BOSSDesk via this MCP Server to automate IT ticketing and asset lookups in your multi-step chains.
Works with every AI agent you already use
…and any MCP-compatible client
Connect BOSSDesk MCP to LangChain
Create your Vinkius account to connect BOSSDesk 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.
Run multi-step IT workflows in LangChain
The `update_ticket` and `add_ticket_note` tools let your LangChain agents modify support tickets on the fly based on previous chain outputs. If a system alert fires, your pipeline gets the alert data, finds the ticket, and writes a diagnostic note without you touching a keyboard. Because this runs inside LangGraph, you can trace every single tool call using LangSmith. You see the exact input, the JSON response, and how much latency each BOSSDesk call added to your execution chain.
Map physical assets to users with this MCP Server
Your agent uses `get_asset` and `list_users` to cross-reference who owns what hardware. When an employee leaves, a single prompt triggers a chain that lists their gear and updates their ticket status automatically. You don't have to write custom API wrappers for every database lookup. The MCP server handles the connection, letting you focus on building the routing logic in your Python files.
Route tickets by physical location automatically
The `list_locations` and `create_ticket` tools work together to assign incoming issues to the correct regional IT desk. Your LangChain agent checks where the hardware is registered, finds the local office, and routes the ticket to the right queue in seconds. This turns static ticket creation into a dynamic, context-aware routing system. No more routing errors from manual entry mistakes.
Set up BOSSDesk 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 BOSSDesk 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({
"bossdesk-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 BOSSDesk 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 BOSSDesk. 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 BOSSDesk MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the BOSSDesk MCP today
We host it, we monitor it, we maintain it. You just paste one token.