Claude
Add Expert as an MCP tool source in Claude Desktop or Claude Code. Claude can then search your video knowledge base directly during conversations.
Claude Desktop
Add the following to your Claude Desktop MCP configuration file (claude_desktop_config.json):
{
"mcpServers": {
"demobites-expert": {
"url": "https://expert.demobites.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}After saving, restart Claude Desktop. Expert’s tools (search_videos, get_video, list_videos) will appear in Claude’s available tools.
Claude Code
For Claude Code, add Expert to your project’s MCP settings file (.mcp.json):
{
"mcpServers": {
"demobites-expert": {
"type": "url",
"url": "https://expert.demobites.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Example interaction
Once configured, you can ask Claude questions about your video content naturally:
You
What videos cover pricing and plan comparisons?
Claude (using Expert)
I found 3 videos about pricing in your library. The most relevant is “Pricing Plans Overview” which covers plan comparisons starting at the 0:22 mark. There’s also “Enterprise vs Team Plans” at 1:05 and “Billing FAQ” at 0:40.
Claude calls search_videos behind the scenes, receives structured results from Expert, and synthesizes them into a natural response with video references.