1. Conduid
  2. Commerce
  3. Klavis-AI/YouTube
MCP server · Commerce

Klavis-AI/YouTube

Klavis AI (YC X25): MCP integration platforms that let AI agents use tools reliably at any scale

97Excellent

Scored 10 hours ago · breakdown

About Klavis-AI/YouTube

Klavis-AI/YouTube is an MCP server published by Klavis-AI in the Commerce category: klavis AI (YC X25): MCP integration platforms that let AI agents use tools reliably at any scale. It has been installed 0 times through Conduid.

The repository has 5.7K stars and 539 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx klavis

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Klavis-AI/YouTube

Powered by Claude · Grounded in docs

I know everything about Klavis-AI/YouTube. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

python-v2.20.0Python SDK v2.20.0 · 29 Jan 2026What's Changed debug. by @xiangkaiz in https://github.com/Klavis-AI/klavis/pull/944 add more logging. by @xiangkaiz in https://github.com/Klavis-AI/klavis/pull/945 remove logging and use 2.4.0 by @xiangkaiz in…
ts-v2.20.0TypeScript SDK v2.20.0 · 29 Jan 2026What's Changed debug. by @xiangkaiz in https://github.com/Klavis-AI/klavis/pull/944 add more logging. by @xiangkaiz in https://github.com/Klavis-AI/klavis/pull/945 remove logging and use 2.4.0 by @xiangkaiz in…
ts-v2.19.0TypeScript SDK v2.19.0 · 6 Jan 2026What's Changed Add Sharesight doc by @LLiuZheng in https://github.com/Klavis-AI/klavis/pull/839 Update API specifications with fern api update by @zihaolin96 in https://github.com/Klavis-AI/klavis/pull/840 Add category for fetch url mcp by…
python-v2.19.0Python SDK v2.19.0 · 6 Jan 2026What's Changed Add Sharesight doc by @LLiuZheng in https://github.com/Klavis-AI/klavis/pull/839 Update API specifications with fern api update by @zihaolin96 in https://github.com/Klavis-AI/klavis/pull/840 Add category for fetch url mcp by…
ts-v2.18.0TypeScript SDK v2.18.0 · 12 Dec 2025What's Changed hotfix sandbox by @zihaolin96 in https://github.com/Klavis-AI/klavis/pull/818 move fetch-url out of local by @LLiuZheng in https://github.com/Klavis-AI/klavis/pull/819 sandbox update doc by @zihaolin96 in…

README

Documentation Website Discord

🎯 Choose Your Solution

Quick Start

Option 1: Cloud-hosted - klavis.ai

Quickstart guide →

Option 2: Self-host

# 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

Option 3: SDK

# 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"
});

Option 4: REST API

# 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"
  }'

Resources


README mirrored from the source repository 10 hours ago. The original is authoritative.

Questions

About Klavis-AI/YouTube

How do I install Klavis-AI/YouTube?

Run npx klavis, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Klavis-AI/YouTube safe to use with an AI agent?

Its trust score is 97 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Klavis-AI/YouTube still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.