by Klavis-AI
Provides production‑ready MCP servers and a hosted service for integrating AI applications with over 50 third‑party services via standardized APIs, OAuth, and easy Docker or hosted deployment.
Klavis AI delivers a catalog of Model Context Protocol (MCP) servers that expose the functionality of popular SaaS platforms (GitHub, Gmail, Google Sheets, Slack, Notion, Salesforce, Postgres, etc.) as AI‑friendly endpoints. Both a managed hosted service and self‑hostable Docker images are available, allowing developers to plug external data and actions directly into LLM‑driven agents.
klavis client (pip install klavis or npm install klavis), and call klavis.mcp_server.create_server_instance("GMAIL", "user123") to obtain a ready‑to‑use server URL.docker run -p 5000:5000 ghcr.io/klavis-ai/github-mcp-server:latest, or build from source under klavis/mcp_servers/<service>.Q: Do I need to manage OAuth credentials myself?
A: Not when using the hosted service – the platform handles the OAuth flow. For self‑hosted servers, set the required env vars (e.g., KLAVIS_API_KEY) and follow each server’s README.
Q: Is there a free tier? A: Yes, a free API key provides limited monthly usage for the hosted MCP service; additional usage is pay‑as‑you‑go.
Q: Can I add my own MCP server? A: Absolutely. Fork the repository, implement the MCP spec for your service, and publish a Docker image or contribute back.
Q: What languages are supported? A: The client SDK is available for Python and TypeScript/JavaScript. Server implementations exist in Go, Python, and Node.js.
Q: How do I retrieve tool definitions for OpenAI?
A: Call klavis.mcp_server.list_tools(server_url, format="OPENAI") to get a JSON schema compatible with OpenAI’s function‑calling feature.
# Run any MCP Integration
docker pull ghcr.io/klavis-ai/github-mcp-server:latest
docker run -p 5000:5000 ghcr.io/klavis-ai/github-mcp-server:latest
# Install Open Source Strata locally
pipx install strata-mcp
strata add --type stdio playwright npx @playwright/mcp@latest
# Python SDK
from klavis import Klavis
from klavis.types import McpServerName
klavis = Klavis(api_key="your-key")
# Create Strata instance
strata = klavis_client.mcp_server.create_strata_server(
user_id="user123",
servers=[McpServerName.GMAIL, McpServerName.SLACK],
)
# Or use individual MCP servers
gmail = klavis.mcp_server.create_server_instance(
server_name=McpServerName.GMAIL,
user_id="user123",
)
// TypeScript SDK
import { KlavisClient, McpServerName } from 'klavis';
const klavis = new KlavisClient({ apiKey: 'your-api-key' });
// Create Strata instance
const strata = await klavis.mcpServer.createStrataServer({
userId: "user123",
servers: [Klavis.McpServerName.Gmail, Klavis.McpServerName.Slack],
});
// Or use individual MCP servers
const gmail = await klavis.mcpServer.createServerInstance({
serverName: McpServerName.GMAIL,
userId: "user123"
});
# Create Strata server
curl -X POST "https://api.klavis.ai/v1/mcp-server/strata" \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"servers": ["GMAIL", "SLACK"]
}'
# Create individual MCP server
curl -X POST "https://api.klavis.ai/v1/mcp-server/instance" \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"server_name": "GMAIL",
"user_id": "user123"
}'
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
by danny-avila
Provides a self‑hosted ChatGPT‑style interface supporting numerous AI models, agents, code interpreter, image generation, multimodal interactions, and secure multi‑user authentication.
by block
Automates engineering tasks on local machines, executing code, building projects, debugging, orchestrating workflows, and interacting with external APIs using any LLM.
by RooCodeInc
Provides an autonomous AI coding partner inside the editor that can understand natural language, manipulate files, run commands, browse the web, and be customized via modes and instructions.
by pydantic
A Python framework that enables seamless integration of Pydantic validation with large language models, providing type‑safe agent construction, dependency injection, and structured output handling.
by mcp-use
A Python SDK that simplifies interaction with MCP servers and enables developers to create custom agents with tool‑calling capabilities.
by lastmile-ai
Build effective agents using Model Context Protocol and simple, composable workflow patterns.
by nanbingxyz
A cross‑platform desktop AI assistant that connects to major LLM providers, supports a local knowledge base, and enables tool integration via MCP servers.
by gptme
Provides a personal AI assistant that runs directly in the terminal, capable of executing code, manipulating files, browsing the web, using vision, and interfacing with various LLM providers.