Connectto Cal.com, GitLab MCP Servers

Create powerful AI workflows by connecting multiple MCP servers including Cal.com, GitLab for enhanced automation capabilities in Klavis AI.

Cal.com icon

Cal.com

featured

Cal.com is an open-source scheduling platform that helps you schedule meetings without the back-and-forth emails. Manage event types, bookings, availability, and integrate with calendars for seamless appointment scheduling

GitLab icon

GitLab

featured

GitLab is a comprehensive DevOps platform that provides Git repository management, CI/CD pipelines, issue tracking, and project management. Manage repositories, branches, merge requests, issues, pipelines, and collaborate with your development team

Quick Setup Guide

Follow these steps to connect LlamaIndex to these MCP servers

1

Create Your Account

Sign up for KlavisAI to access our MCP server management platform.

2

Configure Connections

Add your desired MCP servers to LlamaIndex and configure authentication settings.

3

Test & Deploy

Verify your connections work correctly and start using your enhanced AI capabilities.

LlamaIndex + KlavisAI Integration Snippets

import os
from klavis import Klavis
from klavis.types import McpServerName, ConnectionType
from llama_index.tools.mcp import (
    BasicMCPClient,
    get_tools_from_mcp_url,
    aget_tools_from_mcp_url,
)
from llama_index.core.agent.workflow import FunctionAgent, AgentWorkflow

# Initialize clients
klavis_client = Klavis(api_key=os.getenv("KLAVIS_API_KEY"))

cal.com_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.CAL.COM,
    user_id="1234",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)

gitlab_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.GITLAB,
    user_id="1234",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)
cal.com_tools = await aget_tools_from_mcp_url(
    cal.com_mcp_instance.server_url, 
    client=BasicMCPClient(cal.com_mcp_instance.server_url)
)
gitlab_tools = await aget_tools_from_mcp_url(
    gitlab_mcp_instance.server_url, 
    client=BasicMCPClient(gitlab_mcp_instance.server_url)
)

cal.com_agent = FunctionAgent(
    name="cal.com_agent",
    tools=cal.com_tools,
    llm=llm,
)

gitlab_agent = FunctionAgent(
    name="gitlab_agent",
    tools=gitlab_tools,
    llm=llm,
)
workflow = AgentWorkflow(
    agents=[cal.com_agent, gitlab_agent],
    root_agent="cal.com_agent",
)

Frequently Asked Questions

Everything you need to know about connecting to these MCP servers

Ready to Get Started?

Join developers who are already using KlavisAI to power their LlamaIndex applications with these MCP servers.

Start For Free