Klavis-AI / klavis
- ΠΏΠΎΠ½Π΅Π΄Π΅Π»ΡΠ½ΠΈΠΊ, 13 ΠΎΠΊΡΡΠ±ΡΡ 2025β―Π³. Π² 00:00:03
Klavis AI (YC X25): MCP integration layers that let AI agents use thousands of tools reliably.
π¦ MCP integration layers that let AI agents use tools reliably at any scale
Strata is one MCP server that guides your AI agents use tools reliably progressively at any scale.
π― Scalable Tool Integration β Beyond 40-50 tool limits
π Progressive Discovery β Guides agents from intent to action, step-by-step.
50+ production MCP servers. OAuth included. Deploy anywhere.
Connect your AI to GitHub, Gmail, Slack, Salesforce, and more - all with enterprise OAuth and Docker support.
π Real OAuth β Not just API keys
π³ Docker ready β One-line deploy
Self-host everything on your own infrastructure:
# 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
Get instant access without any setup:
Ready in under 2 minutes! π
Build custom applications with our SDKs:
# Python SDK
from klavis import Klavis
from klavis.types import McpServerName
klavis = Klavis(api_key="your-key")
# Create Strata instance
strata = klavis.mcp_server.create_strata_server(
user_id="user123",
servers=[McpServerName.GMAIL, McpServerName.YOUTUBE],
)
# 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: [McpServerName.GMAIL, McpServerName.YOUTUBE]
});
// Or use individual MCP servers
const gmail = await klavis.mcpServer.createServerInstance({
serverName: McpServerName.GMAIL,
userId: "user123"
});
Use REST API for any programming language:
# 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", "YOUTUBE"]
}'
# 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"
}'
π Complete Documentation β
Klavis AI (YC X25) π Empowering AI with Seamless Integration