How to Use the Clientjoy MCP in LangChain
Build custom CRM agents and data chains for your sales pipeline with LangChain.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Clientjoy MCP to LangChain
Create your Vinkius account to connect Clientjoy 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 Your CRM Operations
This server gives your agent tools to connect your sales data. Start a chain by having your agent `list_leads`. Then, it can loop through the results and call `get_customer_details` for each one to build a complete profile. You get a full picture without manually digging through your CRM. It's not just about reading data. Your agent can build complex workflows that decide when to act. For example, after checking `list_billing_invoices` and finding overdue payments for a client, your agent can decide to hold off on sending a new proposal. That’s what happens when you connect Clientjoy tools to a reasoning chain.
Automate Sales and Client Workflows
You can build agents that do more than just report status. An agent can monitor your business by calling `list_sales_proposals` and `list_service_items`. Based on the results, it can then take action, like using `create_new_lead` to kick off a new sales process for a promising sector. This lets you automate the tedious parts of client management. Your agent handles the initial data gathering and entry, so you can focus on the actual client relationship. This MCP server provides the specific actions your LangChain agent needs to get things done in Clientjoy.
Your Clientjoy MCP Server as a LangChain Tool
Connecting to Clientjoy is straightforward. Once you point your LangChain agent to the Vinkius endpoint, it gets instant access to all seven tools. There's no need to write custom API wrappers or handle authentication for each operation. Your agent can immediately start listing customers, checking invoices, and creating leads. The `MultiServerMCPClient` makes it simple to add Clientjoy to your existing agentic workflows, even alongside tools from other services, giving your agent a wider range of capabilities.
Set up Clientjoy 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 Clientjoy 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({
"clientjoy-alternative-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 Clientjoy 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 Clientjoy. 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 Clientjoy MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Clientjoy MCP today
We host it, we monitor it, we maintain it. You just paste one token.