feat: Add MCP server for YouTube CLI API integration

This commit is contained in:
Jarian Cottingham 2026-02-03 20:40:49 +00:00
parent 62f76db98d
commit a778a016ae
2 changed files with 56 additions and 0 deletions

14
app.log Normal file
View File

@ -0,0 +1,14 @@
Error saving archive: [Errno 13] Permission denied: '/app'
* Serving Flask app 'app'
* Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:4096
* Running on http://192.168.122.203:4096
Press CTRL+C to quit
* Restarting with stat
Error saving archive: [Errno 13] Permission denied: '/app'
* Debugger is active!
* Debugger PIN: 556-686-523
192.168.122.1 - - [03/Feb/2026 19:10:11] "GET /search?q=roo+vs+cline HTTP/1.1" 200 -
127.0.0.1 - - [03/Feb/2026 19:10:13] "GET /health HTTP/1.1" 200 -

42
docker-setup.md Normal file
View File

@ -0,0 +1,42 @@
# Docker No-Sudo Setup Guide
To run Docker commands without sudo, you need to add your user to the `docker` group. Here's how to do it:
## Add User to Docker Group
```bash
sudo usermod -aG docker $USER
```
## Apply Group Changes
After adding to the group, you need to either:
1. **Log out and log back in**, or
2. **Run this command** to apply changes without logging out:
```bash
newgrp docker
```
## Verify Setup
Check that you can run Docker commands without sudo:
```bash
docker info
```
## Alternative: Create Docker Socket Permissions
If you prefer not to add users to groups, you can modify socket permissions:
```bash
sudo chmod 666 /var/run/docker.sock
```
## Security Note
Adding users to the docker group provides full Docker daemon access. This is equivalent to having root access, so only add trusted users to this group.
## Persistent Setup
To make this change persistent across reboots:
1. Ensure the docker service is enabled: `sudo systemctl enable docker`
2. The group membership will persist after reboot