Connectto Firecrawl Deep Research, Firecrawl Web Search, Plai MCP Servers

Create powerful AI workflows by connecting multiple MCP servers including Firecrawl Deep Research, Firecrawl Web Search, Plai for enhanced automation capabilities in Klavis AI.

Firecrawl Deep Research icon

Firecrawl Deep Research

featured

A personal research assistant that analyze sources across the web, based on Firecrawl

Available Tools:

  • firecrawl_deep_research
Firecrawl Web Search icon

Firecrawl Web Search

featured

Advanced web crawling, scraping, and search capabilities powered by Firecrawl

Available Tools:

  • firecrawl_scrape
  • firecrawl_map
  • firecrawl_crawl
  • +6 more tools
Plai icon

Plai

featured

Plai is an AI-powered advertising platform that simplifies creating, managing, and optimizing Facebook, Instagram, and LinkedIn ad campaigns. It provides tools for lead generation, campaign insights, and automated ad management to help businesses scale their digital marketing efforts effectively.

Available Tools:

  • plai_create_user_profile
  • plai_get_user_profile
  • plai_create_link
  • +7 more tools

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
from crewai import Agent, Task, Crew, Process
from crewai_tools import MCPServerAdapter
from klavis import Klavis
from klavis.types import McpServerName

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

# Create strata server with all MCP servers
response = klavis_client.mcp_server.create_strata_server(
    servers=[McpServerName.FIRECRAWL_DEEP_RESEARCH, McpServerName.FIRECRAWL_WEB_SEARCH, McpServerName.PLAI],
    user_id="1234"
)

mcp_server_url = response.strata_server_url

# Initialize MCP tools from strata server
with MCPServerAdapter(mcp_server_url) as mcp_tools:
    # Create agent with access to all MCP server tools
    strata_agent = Agent(
        role="Multi-Service Specialist",
        goal="Handle tasks across multiple services and data sources",
        backstory="You are an expert at coordinating and analyzing data from multiple services",
        tools=mcp_tools,
        reasoning=True,
        verbose=False
    )
    
    # Define Task
    research_task = Task(
        description="Gather and analyze comprehensive data from all available sources",
        expected_output="Complete analysis with structured summary and key insights",
        agent=strata_agent,
        markdown=True
    )
    
    # Create and execute the crew
    crew = Crew(
        agents=[strata_agent],
        tasks=[research_task],
        verbose=False,
        process=Process.sequential
    )
    
    result = crew.kickoff()

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