Connectto LinkedIn, Dropbox, GitHub MCP Servers

Create powerful AI workflows by connecting multiple MCP servers including LinkedIn, Dropbox, GitHub for enhanced automation capabilities in Klavis AI.

LinkedIn icon

LinkedIn

coming soon

LinkedIn is a business and employment-oriented online service

Dropbox icon

Dropbox

coming soon

Dropbox is a file hosting service that offers cloud storage and file synchronization

GitHub icon

GitHub

featured

Enhanced GitHub MCP Server

Available Tools:

  • github_get_me
  • github_get_issue
  • github_search_issues
  • +31 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"))

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

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

github_mcp_instance = klavis_client.mcp_server.create_server_instance(
    server_name=McpServerName.GITHUB,
    user_id="1234",
    platform_name="Klavis",
    connection_type=ConnectionType.STREAMABLE_HTTP,
)
linkedin_tools = await aget_tools_from_mcp_url(
    linkedin_mcp_instance.server_url, 
    client=BasicMCPClient(linkedin_mcp_instance.server_url)
)
dropbox_tools = await aget_tools_from_mcp_url(
    dropbox_mcp_instance.server_url, 
    client=BasicMCPClient(dropbox_mcp_instance.server_url)
)
github_tools = await aget_tools_from_mcp_url(
    github_mcp_instance.server_url, 
    client=BasicMCPClient(github_mcp_instance.server_url)
)

linkedin_agent = FunctionAgent(
    name="linkedin_agent",
    tools=linkedin_tools,
    llm=llm,
)

dropbox_agent = FunctionAgent(
    name="dropbox_agent",
    tools=dropbox_tools,
    llm=llm,
)

github_agent = FunctionAgent(
    name="github_agent",
    tools=github_tools,
    llm=llm,
)
workflow = AgentWorkflow(
    agents=[linkedin_agent, dropbox_agent, github_agent],
    root_agent="linkedin_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