Gerax5/MCP_Server
3.1
If you are the rightful owner of MCP_Server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP server analyzes recent comments from a YouTube channel, focusing on sentiment and keywords.
📹 Youtube analisis MCP
Servidor MCP por stdio que analiza comentarios recientes de un canal de YouTube (sentimiento + palabras clave).
Requisitos
Existen dos formas de correr el programa, peude ser directamente con python o con uv
- Python 3.10+
- Uv (opcional)
🪟 Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
🐧 Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
- (alternativa)
pip install uv
🚀 Instalación
Clona el repo (o copia los archivos) y desde la carpeta del proyecto:
uv sync
Esto crea un .venv
y instala dependencias de pyproject.toml
.
🤑 Ejecutar el servidor MCP
Dos formas:
- con python directo
python Server.py
- con uv
uv run mcp.py
🧐 Como conectarlo a cloud?
{
"mcpServers": {
"youtube": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\<Path al archivo>\\MCP_Server",
"run",
"Server.py"
]
}
}
}
💩 Como correrlo en tu chatbot?
Si tu implentacion tiene tipo es stdio, comando es python y args ./server.py. ejemplo:
Name: ServerGerax
type: "stdio"
commnad: "python"
Args = ["./Server.py"] # Aqui es donde esta clonado el server