youtube-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
youtube-mcp-server by 0GiS0 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | MediaDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
youtube-mcp-server · Summary
A practical MCP server that integrates YouTube API with both stdio and SSE transport methods.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
youtube-mcp-server · Use cases
- Retrieving YouTube channel information and statistics through AI assistants
- Building MCP servers with multiple transport methods (stdio and SSE)
- Learning MCP implementation patterns with practical examples
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
youtube-mcp-server · Install
Installation
Option 1: MCP Server with stdio transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-stdio
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run buildOption 2: MCP Server with SSE transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-remote
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run build && npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"youtube-stdio": {
"command": "node",
"args": ["/path/to/mcp-stdio/build/index.js"]
},
"youtube-remote": {
"url": "http://localhost:3000"
}
}
}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.