CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
aryankeluskar avatar

Aryankeluskar Poke Video Mcp

aryankeluskar/poke-video-mcp
authHTTPregistry active
Summary

This server connects Claude to your Flashback video library, letting you search through personal video collections using natural language queries. It exposes two main operations: query_videos for semantic search across video segments and get_setup_instructions for configuration help. Under the hood, it hits a FastAPI backend that uses Pinecone for vector search across video chunks that have been pre-processed with Claude for visual analysis and Whisper for transcription. Results come back with AI-generated descriptions, relevance scores, and presigned URLs to 30-second clips. You'd reach for this if you're recording your screen or life with Flashback and need to find specific moments without manually scrubbing through hours of footage.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Video Query MCP Server

An MCP (Model Context Protocol) server that provides video search capabilities using natural language queries. This server interfaces with the Flashback video processing API to search through your personal video collection.

Features

  • 🔍 Natural Language Search: Query videos using everyday language (e.g., "person giving presentation", "dog running in park")
  • 🤖 AI-Generated Descriptions: Returns detailed descriptions of video content including visual analysis and audio transcription
  • 🎬 Video Clips: Get direct URLs to relevant 30-second video segments
  • ⚡ Fast & Secure: Presigned URLs with 1-hour expiration for secure access
  • 📊 Relevance Scoring: Results ranked by semantic similarity to your query

Setup

Prerequisites

  • Your Flashback account user ID
  • Access to the Flashback video processing system

Configuration

When connecting this MCP server to Poke or other MCP clients, you'll need to provide:

  • user_id: Your unique Flashback account identifier (e.g., 4087fce3-3d86-4047-b35f-4004b4c19192)

Development

  1. Run the server:

    uv run dev
    
  2. Test interactively:

    uv run playground
    

Usage Examples

Query videos:

query_videos("person talking", max_results=5)

Get setup help:

get_setup_instructions()

How It Works

  1. Video Processing: Videos uploaded to Flashback are automatically:

    • Split into ~30-second segments
    • Analyzed with AI for visual content
    • Transcribed for audio content
    • Stored in a searchable vector database
  2. Search Process: When you search:

    • Your query is converted to embeddings
    • The system finds matching video segments
    • Returns descriptions and URLs for relevant clips
  3. Results: Each result includes:

    • AI-generated description of the video content
    • Relevance score (0-1, higher = more relevant)
    • Direct URL to view the video segment
    • Expiration time for the URL

API Reference

Tools

query_videos(query: str, max_results: int = 10) -> str

Search for video clips based on natural language query.

Parameters:

  • query: Natural language description of what you're looking for
  • max_results: Maximum number of results to return (1-15)

Returns: Formatted text with video descriptions and URLs

get_setup_instructions() -> str

Get detailed setup instructions for the video query system.

Returns: Complete setup and usage guide

Resources

  • api://video-processing: Information about the underlying video processing API

Examples

# Search for specific content
query_videos("meeting discussion about deadlines")
query_videos("someone cooking in kitchen")
query_videos("red car driving")

# Limit results
query_videos("presentation", max_results=3)

Troubleshooting

  • No results found: Check that videos have been uploaded to your Flashback account
  • "No description available": Older videos may need to be re-processed for full descriptions
  • Expired URLs: Video URLs expire after 1 hour for security - request fresh results if needed

Technical Details

  • Backend: FastAPI service deployed on Modal
  • Vector Database: Pinecone for semantic search
  • AI Models: Anthropic Claude for visual analysis, OpenAI Whisper for transcription
  • Storage: Google Cloud Storage for video files

Deploy

Ready to deploy? Push your code to GitHub and deploy to Smithery:

  1. Create a new repository at github.com/new

  2. Initialize git and push to GitHub:

    git add .
    git commit -m "Video Query MCP Server 🎬"
    git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO.git
    git push -u origin main
    
  3. Deploy your server to Smithery at smithery.ai/new

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Search & Web CrawlingMedia & Entertainment
Registryactive
TransportHTTP
AuthRequired
UpdatedSep 14, 2025
View on GitHub

More from aryankeluskar

  • Polymarket6

Related Search & Web Crawling MCP Servers

View all →
badroobot avatar
Badroobot Test M

ai.smithery/badroobot-test_m

Send quick greetings, scrape website content, and generate text or images on demand. Perform web s…
bigvik193 avatar
Bigvik193 Reddit User Mcp

ai.smithery/bigvik193-reddit-user-mcp

Browse and manage Reddit posts, comments, and threads. Fetch user activity, explore hot/new/rising…
cindyloo avatar
Cindyloo Dropbox Mcp Server

ai.smithery/cindyloo-dropbox-mcp-server

Search, browse, and read your Dropbox files. Find documents by name or content, list folders, and…
harjap-singh-3105 avatar
Harjap Singh 3105 Splitwise Mcp

ai.smithery/harjap-singh-3105-splitwise_mcp

Manage Splitwise balances, expenses, and groups from your workspace. Fetch friends and recent acti…
huuthangntk avatar
Huuthangntk Claude Vision Mcp Server

ai.smithery/huuthangntk-claude-vision-mcp-server

Analyze images from multiple angles to extract detailed insights or quick summaries. Describe visu…
imronai avatar
Imronai Mcp Server Browserbase

ai.smithery/imronai-mcp-server-browserbase

Automate cloud browsers to navigate websites, interact with elements, and extract structured data.…