MCP Catalogs
Home

ytt-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

ytt-mcp
by cottongeeks
filesystem
by modelcontextprotocol
Stars★ 71★ 85,748
30d uses
Score4377
Official
Categories
AI / LLM ToolsMediaProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit7 mo agothis month

ytt-mcp · Summary

MCP server for fetching YouTube video transcripts with multiple integrations.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

ytt-mcp · Use cases

  • Summarize YouTube content without watching videos
  • Analyze video content for research purposes
  • Integrate video transcripts into AI-powered workflows

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

ytt-mcp · Install

Install and run using uv:

# Install using uv
uv add ytt-mcp

# Run with uvx
uvx ytt-mcp

For Claude Desktop, add to your claude-desktop-config.json:

{
  "mcpServers": {
    "ytt-mcp": {
      "command": "uvx",
      "args": ["ytt-mcp"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.