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
archivarix-com avatar

Tube Search Mcp

archivarix-com/tube-search-mcp
authSTDIOregistry active
Summary

This server connects Claude to the Archivarix Tube Search API, giving you access to over a billion archived YouTube videos dating back to 2005. You get nine tools including search_videos for full-text queries, get_video for metadata on specific IDs, get_subtitles for transcripts, and get_summary for AI-generated overviews. It also exposes search_channel to pull all archived content from a given channel and get_video_status_history to see when videos went private or got deleted. The setup is straightforward: grab an API key from tube.archivarix.net and drop it into your MCP config. Useful when you need to reference content that's no longer publicly available or track how video metadata has changed over time.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →

tube-search-mcp

MCP server for Archivarix Tube Search — search archived YouTube videos via AI assistants.

Search over 1 billion YouTube videos indexed since 2005. Find deleted videos, metadata, thumbnails, and subtitles.

Quick Start

npx tube-search-mcp --api-key tsk_YOUR_KEY

Or with environment variable:

export TUBE_API_KEY=tsk_YOUR_KEY
npx tube-search-mcp

Get your API key at tube.archivarix.net (Profile → API Keys).

Configuration

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "tube-search": {
      "command": "npx",
      "args": ["-y", "tube-search-mcp"],
      "env": {
        "TUBE_API_KEY": "tsk_YOUR_KEY"
      }
    }
  }
}

Claude Code

Add to ~/.claude/mcp.json:

{
  "mcpServers": {
    "tube-search": {
      "command": "npx",
      "args": ["-y", "tube-search-mcp"],
      "env": {
        "TUBE_API_KEY": "tsk_YOUR_KEY"
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "tube-search": {
      "command": "npx",
      "args": ["-y", "tube-search-mcp"],
      "env": {
        "TUBE_API_KEY": "tsk_YOUR_KEY"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "tube-search": {
      "command": "npx",
      "args": ["-y", "tube-search-mcp"],
      "env": {
        "TUBE_API_KEY": "tsk_YOUR_KEY"
      }
    }
  }
}

Available Tools

ToolDescription
search_channelFind all archived videos from a YouTube channel
search_videosFull-text search across video titles and descriptions
get_videoGet metadata for a specific video by ID
get_subtitlesGet transcript as readable plain text
get_summaryGet AI-generated video summary
generate_summaryGenerate a new AI summary for a video
browse_summariesBrowse summaries by tag, channel, or language
get_video_status_historyView status change history of a video
get_usageCheck your current API usage and limits

Resources

URIDescription
tube://video/{videoId}Video metadata
tube://channel/{channelId}Channel info
tube://subtitles/{videoId}Transcript as plain text
tube://summary/{videoId}AI-generated summary
tube://tagsPopular summary tags

Prompts

PromptDescription
research_videoComprehensive video analysis workflow
channel_overviewChannel research and statistics
find_deletedDiscover and analyze deleted videos

Environment Variables

VariableDescriptionDefault
TUBE_API_KEYAPI key (required)—
TUBE_MCP_URLCustom MCP endpointhttps://tube.archivarix.net/mcp

How It Works

This package acts as a stdio-to-HTTP proxy. It connects to the remote Archivarix Tube Search MCP server via Streamable HTTP and exposes the same tools, resources, and prompts over stdio transport for local AI clients.

AI Client ←(stdio)→ tube-search-mcp ←(HTTP)→ tube.archivarix.net/mcp

Documentation

Full documentation: tube.archivarix.net/guide/mcp

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Configuration

TUBE_API_KEY*secret

API key for Archivarix Tube Search. Obtain at https://tube.archivarix.net/profile (Plus tier or API tier required).

Categories
Search & Web CrawlingMedia & Entertainment
Registryactive
Packagetube-search-mcp
TransportSTDIO
AuthRequired
UpdatedMay 11, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
burakaydinofficial avatar
Searxng Deepdive

burakaydinofficial/searxng-deepdive

MCP server for SearXNG with engine targeting, multi-page fanout, and HTML→Markdown URL reading.
ch.swisslivingindex avatar
Swiss Living Index

ch.swisslivingindex/swiss-living-index

Official Swiss living-cost & relocation data for all 26 cantons — taxes, rent, premiums, jobs.
com.digitalnomadindex avatar
Coliving Search

com.digitalnomadindex/coliving-search

Search 14,000+ verified coliving and coworking spaces with pricing, amenities, and reviews.
com.gleanmark avatar
GleanMark Trademark Search

com.gleanmark/trademark-search

Search 13.7M+ USPTO trademarks. Clearance, phonetic matching, TTAB stats, analytics.
ilizaran avatar
Semantic Search

com.historicalsoundscapes.www/semantic-search

Semantic search for Historical Soundscapes. Search eventos, entities, filters. Cross-lingual ES/EN.
tetiai avatar
pixserp

com.pixserp/search

Live AI-native web search with citations. One tool for every MCP client. Flat per-request pricing.