Open CLAW Knowledge Distiller · 龍蝦知識蒸餾器 — Turn YouTube/Bilibili videos into structured knowledge articles. Local Qwen3-ASR MLX + AI summarization. MCP server for Claude Code / Open CLAW agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"knowledge-distiller": {
"env": {
"KD_API_KEY": "your-api-key-here",
"KD_PROVIDER": "google"
},
"args": [
"mcp-server"
],
"command": "kd"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Turn YouTube, Bilibili, and Facebook videos into structured knowledge articles in seconds — locally, for free. > 秒速将 YouTube、Bilibili、Facebook 视频转化为结构化知识文章 — 本地运行,完全免费。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'openclaw-knowledge-distiller' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked openclaw-knowledge-distiller against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Openclaw Knowledge Distiller and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Turn YouTube, Bilibili, and Facebook videos into structured knowledge articles in seconds — locally, for free. 秒速将 YouTube、Bilibili、Facebook 视频转化为结构化知识文章 — 本地运行,完全免费。
Open CLAW Knowledge Distiller(龍蝦知識蒸餾器,kd)is an open-source CLI tool and MCP server built for the Open CLAW AI agent ecosystem. It converts YouTube, Bilibili, and Facebook videos into structured knowledge articles — automatically, locally, and for free.
How it works:
Who is it for?
| Feature | Details |
|---|---|
| 🎙️ Local ASR | Qwen3-ASR MLX runs entirely on-device (Apple Silicon). No API key, no cloud, free forever. |
| 📝 Smart subtitle detection | Auto-detects existing subtitles — skips ASR for faster processing |
| 🤖 AI summarization | Supports Google Gemini, OpenAI, and Anthropic as summary providers |
| 🎨 8 summary styles | Standard, Academic, Action List, News Brief, Investment Analysis, Podcast Digest, ELI5, Bullet Notes |
| 🔌 MCP Server | Connect from Claude Code, Open CLAW, or any MCP-compatible AI agent |
| 🌏 Multilingual | Cantonese (粵語), Mandarin, English, Japanese, Korean, and 50+ languages |
| ⚡ Zero API key mode | --no-summary: pure local transcription, no external services needed |
Prerequisites:
brew install ffmpeg # audio extraction
Install:
pip install openclaw-knowledge-distiller
# or with uv:
uv add openclaw-knowledge-distiller
Qwen3-ASR model (~1-2 GB) downloads automatically from Hugging Face on first use.
Install from source (for development):
git clone https://github.com/destinyfrancis/openclaw-knowledge-distiller.git
cd openclaw-knowledge-distiller
uv sync
# ── No API key needed (100% local) ────────────────────────────────
kd process "https://youtube.com/watch?v=dQw4w9WgXcQ" --no-summary
# Cantonese video with dialect hint
kd process "https://youtube.com/watch?v=..." \
--language yue \
--asr-prompt "這是粵語口語對話,請保留懶音" \
--no-summary
# ── With AI summary ────────────────────────────────────────────────
kd config set api-key "AIzaSy..." # Google Gemini (default provider)
kd process "https://youtube.com/watch?v=..."
# Save as Markdown file
kd process "https://youtube.com/watch?v=..." --output notes.md
# ── Choose a summary style ─────────────────────────────────────────
kd process "https://youtube.com/watch?v=..." --style investment
kd process "https://youtube.com/watch?v=..." --style academic
kd process "https://youtube.com/watch?v=..." --style podcast
kd process "https://youtube.com/watch?v=..." --style eli5
# List all available styles
kd styles
# ── Other AI providers ─────────────────────────────────────────────
kd process "..." --provider openai --model gpt-4o-mini
kd process "..." --provider anthropic --model claude-haiku-4-5-20251001
Run kd styles to list all styles. Choose with --style <key>:
| Key | Name | Best For | |
|---|---|---|---|
standard | 📋 | Standard Summary | General videos (default) |
academic | 🎓 | Academic Notes | Lectures, research talks, conference papers |
actions | ✅ | Action List | Tutorial |