mcp-youtube vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-youtube by adhikasp | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 48 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
mcp-youtube · Summary
A Python-based MCP server that fetches YouTube transcripts with timestamps for LLM integration.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-youtube · Use cases
- Analyzing video content without watching by processing transcripts through an LLM
- Building research tools that aggregate information from educational YouTube videos
- Creating content review systems that process and summarize video transcripts
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 · Install
Installation
Using uv (recommended)
uvx --from git+https://github.com/adhikasp/mcp-youtube mcp-youtubeFrom source
git clone https://github.com/adhikasp/mcp-youtube
cd mcp-youtube
uv venv
source .venv/bin/activate # On Unix/MacOS
# or .venv\Scripts\activate # On Windows
uv sync
python -m youtube_mcpClaude Desktop Configuration
Add the following to your Claude Desktop config.json:
"mcpServers": {
"youtube": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-youtube", "mcp-youtube"]
}
}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.