Connectto Doc2markdown, Discord, Figma MCP Servers

Create powerful AI workflows by connecting multiple MCP servers including Doc2markdown, Discord, Figma for enhanced automation capabilities in Klavis AI.

Doc2markdown icon

Doc2markdown

featured

Convert any file to markdown using markitdown

Available Tools:

  • convert_document_to_markdown
Discord icon

Discord

featured

Discord is a VoIP and instant messaging social platform

Available Tools:

  • discord_get_server_info
  • discord_list_members
  • discord_create_text_channel
  • +6 more tools
Figma icon

Figma

featured

Figma is a collaborative interface design tool for web and mobile applications.

Connect Using Klavis UI

The easiest way to connect these MCP servers to your AI clients

1

Navigate to Klavis Home

Visit the Klavis home page and you will see a list of MCP servers available in Klavis.

2

Authorize Your Servers

Click the "Authorize" button next to your chosen servers. Once servers are authorized, you will see a Green Checkmark status.

3

Add to Your AI Client

Click "Add to Cursor", "Add to VS Code", "Add to Claude" or "Add to Other Clients" button to connect the MCP server to your preferred AI client.

Klavis AI MCP Server Connection UI

Connect Using API

Programmatically connect your AI agents to these MCP servers

1

Get Your API Key

Sign up for Klavis AI to access our MCP server management platform and get your API key.

2

Configure Connections

Use the code examples below to add your desired MCP servers to your AI client and configure authentication settings.

3

Test & Deploy

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

Integrate in minutes, Scale to millions

View Documentation
import os
import asyncio
from klavis import Klavis
from klavis.types import McpServerName
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI

# Initialize clients
klavis_client = Klavis(api_key=os.getenv("KLAVIS_API_KEY"))
llm = ChatOpenAI(model="gpt-4o-mini", api_key=os.getenv("OPENAI_API_KEY"))

# Create strata server with all MCP servers
response = klavis_client.mcp_server.create_strata_server(
    servers=[McpServerName.DOC2MARKDOWN, McpServerName.DISCORD, McpServerName.FIGMA],
    user_id="1234"
)

mcp_server_url = response.strata_server_url

mcp_client = MultiServerMCPClient({
    "strata": {
        "transport": "streamable_http",
        "url": mcp_server_url
    }
})

tools = asyncio.run(mcp_client.get_tools())

agent = create_react_agent(
    model=llm,
    tools=tools,
)

response = asyncio.run(agent.ainvoke({
    "messages": [{"role": "user", "content": "Your query here"}]
}))

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 AI agents and AI applications with these MCP servers.

Start For Free