How to Use the Appointlet MCP in LlamaIndex
Build LlamaIndex agents that index your Appointlet data, letting you ask questions about past and future meetings.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Appointlet MCP to LlamaIndex
Create your Vinkius account to connect Appointlet to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Create a Scheduling Knowledge Base
Use the Appointlet tools to build a private knowledge base about your scheduling activity. Your agent can periodically run `list_bookings` and `get_booking` for all your scheduling pages, feeding the results directly into a LlamaIndex vector store. Now you can ask natural language questions about your schedule. Query things like "Who did I meet with last month about Project X?" or "List all upcoming product demos." The agent finds answers grounded in your actual Appointlet data, not hallucinations.
Ground Agent Actions in Real Data
LlamaIndex agents can use the Appointlet tools to get real-time context before acting. Before suggesting a meeting time, your agent can call `list_meeting_types` to see what's actually available and check constraints with `get_meeting_type`. This makes your agent far more reliable. It's not just following a script; it's making decisions based on live data from your Appointlet account. This reduces errors and makes the agent's responses more accurate.
Query Your MCP Server Configuration
Index your account's structure for quick reference. Your agent can run `list_scheduling_pages`, `list_members`, and `list_intake_fields` just once, then index that information. This creates a queryable snapshot of your entire Appointlet setup. This lets you ask your LlamaIndex agent questions about your own configuration, like "Which scheduling page is for customer support?" or "What fields are required for a demo call?" It can answer instantly by searching the indexed data from this MCP Server.
Set up Appointlet MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all Appointlet MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to Appointlet tools.",
)
response = await agent.run("List recent Appointlet data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Appointlet. 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 Appointlet MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Appointlet MCP today
We host it, we monitor it, we maintain it. You just paste one token.