vidtheque
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vidthequeFind where I watched a video about MCP servers."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vidtheque
Knowledge is announced on video. vidtheque puts it on tap.
You don't have time to watch everything — your agent does. Follow the
builders whose talks, streams and deep-dives matter: vidtheque turns them into
solid, timestamped knowledge for you and your agents — every sentence spoken,
every line that crossed the screen, every frame — and every answer comes with
its receipt: the sentence, the slide, and the second it happened
(https://youtu.be/ID?t=123).
Point it at a video, a channel, or a playlist; it transcribes with word-level timestamps, reads what is on screen, embeds keyframes, and keeps the whole thing in a local index you own. Self-hosted; your agents plug in over MCP. A built-in web demo and a management dashboard ride in the same process: search and ask for visitors, a browsable index — videos, shot timelines, OCR overlays, provenance, live jobs — for the operator.
Early development. Working end to end — the pipeline, the MCP tool surface, the demo site and the dashboard are all functional and tested — but there are no releases and no published images yet, and schemas can still change without notice.
Architecture
Two services, one repo, HTTP between them — never a shared Python import.
flowchart LR
client["MCP client<br/>(Claude, …)"] -->|MCP| MCP
browser["Browser"] -->|"demo · dashboard"| MCP
subgraph MCP ["mcp/ — CPU, multi-arch (runs on a Pi)"]
direction TB
surface["MCP tools · OAuth (CIMD)<br/>demo site · management dashboard"]
pipeline["yt-dlp fetch · scene detection<br/>pipeline orchestration · job queue"]
store[("SQLite + sqlite-vec + FTS5<br/>keyframe JPEGs")]
surface --- pipeline --- store
end
MCP -->|"HTTP — OpenAI shapes where they fit<br/>/v1/audio/transcriptions · /v1/ocr<br/>/v1/embeddings · /v1/embeddings/image<br/>/v1/embeddings/frame-query"| Worker
subgraph Worker ["worker/ — GPU, single box, stateless"]
direction TB
lm["LifecycleManager — one job queue,<br/>load-on-demand, idle-TTL unload,<br/>NVML VRAM check, acquire/release hooks"]
backends["STT: whisperX · OCR: RapidOCR<br/>Embeddings: Qwen3-VL-Embedding-2B<br/>(one model, one shared slot, both legs)"]
lm --- backends
end
tunnel["cloudflared (optional)<br/>compose profile <code>tunnel</code>"] -.-> MCPThe worker is a stateless inference API. No GPU? Skip the worker service
entirely and point WORKER_URL at any OpenAI-compatible provider — the
endpoints are the contract, not the implementation.
Transcripts, metadata, OCR text and keyframes are embedded by one model:
Qwen3-VL-Embedding-2B (Apache-2.0, 2048 dims), which reads a slide or a
terminal as a document rather than as a picture — the axis where a CLIP-style
dual encoder measures 1.3–3.6× worse, and this corpus is conference talks. It
serves both legs from one loaded checkpoint in one lifecycle slot, so a cold
search pays one model load instead of two. Qwen3-Embedding-0.6B (1024 dims)
and SigLIP 2 NaFlex so400m (1152 dims) remain selectable for a smaller card;
that configuration is genuinely two spaces, never mixed — which is why text and
frame embeddings never share an endpoint under either arrangement.
Related MCP server: YouTube Knowledge Base MCP
Quickstart
git clone https://github.com/T0mSIlver/vidtheque.git
cd vidtheque/deploy
cp .env.example .env # read it: every knob is documented there
docker compose up -d # mcp + workerWith a Cloudflare tunnel for remote access (read docs/deploy-public.md
first — going public is a checklist, and the security audit is the gate):
TUNNEL_TOKEN=… docker compose --profile tunnel up -dCheck the worker:
curl localhost:8081/healthz
curl localhost:8081/status # loaded models, VRAM, queue depthDevelopment
Requires uv and Python 3.12.
uv sync # workspace: mcp + worker + dev tools (CPU-only deps)
make test # pytest, CPU-only, no model downloads
make bench # backend-vs-backend comparisons on your own hardwareHeavy inference dependencies live in the worker's [gpu] extra, so CI and a
laptop checkout install cleanly without CUDA:
uv sync --extra gpu # whisperX, transformers, RapidOCRLayout
Path | What |
| MCP server, indexing pipeline, demo site, management dashboard |
| GPU inference worker: FastAPI + backend registry + lifecycle |
| docker-compose, |
| benchmark harness — backend comparisons on real hardware |
| the contracts: tool surface, index schema, demo site, dashboard |
| the evidence behind the contracts (append-only working notes) |
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceTransforms YouTube into a queryable knowledge source with search, video details, transcript analysis, and AI-powered tools for summaries, learning paths, and knowledge graphs. Features quota-aware API access with caching and optional OpenAI/Anthropic integration for advanced content analysis.10101MIT
- Flicense-qualityDmaintenanceBuilds a searchable knowledge base from YouTube video transcripts with hybrid semantic and keyword search. Allows LLM assistants to search, organize, and retrieve timestamped information from videos you've watched.3
- AlicenseAqualityDmaintenanceA zero-config server that enables searching YouTube videos, retrieving transcripts, and browsing channel data without requiring API keys. It allows users to search across a creator's entire content library to find specific passages and timestamps.88MIT
- FlicenseAqualityDmaintenanceEnables AI agents to semantically search, ask questions about, and analyze videos, with persistent memory and social media import capabilities.182
Related MCP Connectors
Search everything you save: YouTube, articles, podcasts, PDFs, Notion, Obsidian. API key or OAuth.
Search 4M+ podcasts & YouTube, transcribe any episode, search transcripts, generate AI lessons.
Provide token-optimized, structured YouTube data to enhance your LLM applications. Access efficien…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/T0mSIlver/vidtheque'
If you have feedback or need assistance with the MCP directory API, please join our Discord server