How to Use the YouCanBook.me MCP in LangChain
Orchestrate Multi-Step Scheduling Workflows with LangChain and YouCanBook.me.
Works with every AI agent you already use
…and any MCP-compatible client
Connect YouCanBook.me MCP to LangChain
Create your Vinkius account to connect YouCanBook.me 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.
Automating Booking Funnels via MCP Server
The `create_intent` tool starts a booking sequence by generating an intent ID. Your agent can immediately follow this up by calling `get_availability`, using the returned intent ID to find open time slots for the user. The agent doesn't stop there. It can then use that availability data, along with the final confirmation step via `confirm_intent`, completing a complex scheduling workflow in one chain.
Managing Profile Data in LangChain
Need to check setup details? The agent runs `get_profile` to retrieve comprehensive configuration for any given booking page. This output gives the LLM all the necessary context, like time zone rules or required fields. Alternatively, if you just need a quick overview of what's happening across your organization, running `list_profiles` immediately provides a list of every active and inactive booking page.
Handling Booking Status Changes with MCP Server
If an appointment needs to change or be canceled, the agent calls `cancel_booking`. This action permanently removes the calendar event and sends notifications to all attendees. The agent can also query existing records using `list_bookings`, filtering by status—whether they're tentative, upcoming, finished, or cancelled.
Set up YouCanBook.me 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 YouCanBook.me 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({
"youcanbookme-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 YouCanBook.me 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 YouCanBook.me. 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 YouCanBook.me MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the YouCanBook.me MCP today
We host it, we monitor it, we maintain it. You just paste one token.