Connectto Asana, Notion, Google Calendar MCP Servers

Create powerful AI workflows by connecting multiple MCP servers including Asana, Notion, Google Calendar for enhanced automation capabilities in Klavis AI.

Asana icon

Asana

featured

Asana is a web and mobile application designed to help teams organize, track, and manage their work. It provides project management tools, task assignment, collaboration features, and progress tracking to boost team productivity

Available Tools:

  • asana_create_task
  • asana_get_task
  • asana_search_tasks
  • +16 more tools
Notion icon

Notion

featured

Notion is a collaborative productivity and note-taking application

Available Tools:

  • notion_get_user
  • notion_get_users
  • notion_get_self
  • +10 more tools
Google Calendar icon

Google Calendar

featured

Google Calendar is a time-management and scheduling calendar service

Available Tools:

  • google_calendar_list_calendars
  • google_calendar_create_event
  • google_calendar_list_events
  • +2 more tools

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"))

asana_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.ASANA,
    user_id="1234",
    platform_name="Klavis",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)

notion_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.NOTION,
    user_id="1234",
    platform_name="Klavis",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)

google_calendar_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.GOOGLE_CALENDAR,
    user_id="1234",
    platform_name="Klavis",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)
asana_tools = await aget_tools_from_mcp_url(
    asana_mcp_instance.server_url, 
    client=BasicMCPClient(asana_mcp_instance.server_url)
)
notion_tools = await aget_tools_from_mcp_url(
    notion_mcp_instance.server_url, 
    client=BasicMCPClient(notion_mcp_instance.server_url)
)
google_calendar_tools = await aget_tools_from_mcp_url(
    google_calendar_mcp_instance.server_url, 
    client=BasicMCPClient(google_calendar_mcp_instance.server_url)
)

asana_agent = FunctionAgent(
    name="asana_agent",
    tools=asana_tools,
    llm=llm,
)

notion_agent = FunctionAgent(
    name="notion_agent",
    tools=notion_tools,
    llm=llm,
)

google_calendar_agent = FunctionAgent(
    name="google_calendar_agent",
    tools=google_calendar_tools,
    llm=llm,
)
workflow = AgentWorkflow(
    agents=[asana_agent, notion_agent, google_calendar_agent],
    root_agent="asana_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