MCP Catalogs
Home

mcp-youtube-transcript vs filesystem

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

mcp-youtube-transcript
by jkawamoto
filesystem
by modelcontextprotocol
Stars★ 388★ 85,748
30d uses
Score5077
Official
Categories
MediaAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

mcp-youtube-transcript · Summary

MCP server for retrieving YouTube video transcripts with timestamps and metadata.

filesystem · Summary

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

mcp-youtube-transcript · Use cases

  • Analyzing video content by retrieving text transcripts for research purposes
  • Creating summaries of educational or instructional YouTube videos
  • Processing video content with timestamps for precise reference

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

mcp-youtube-transcript · Install

Installation

For Claude Desktop, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "youtube-transcript": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/jkawamoto/mcp-youtube-transcript",
        "mcp-youtube-transcript"
      ]
    }
  }
}

Alternatively, download the MCP bundle from the [Releases](https://github.com/jkawamoto/mcp-youtube-transcript/releases) page and import it into Claude Desktop.

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.