MyTube MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MyTube MCP Serverlist my videos"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MyTube MCP Server
mytube-mcp is a standalone Model Context Protocol server for MyTube. It translates MCP tools, resources, and prompts into authenticated calls to MyTube’s existing /api/* HTTP API. It does not access MyTube’s database or filesystem directly.
Quick start
Requirements: Node.js 20 or newer and a reachable MyTube 1.10.x server.
After this package is published to npm, the shortest installation is:
npx -y mytube-mcpTo run the public repository immediately from source:
git clone https://github.com/franklioxygen/mytube-mcp.git
cd mytube-mcp
npm install
npm run build
npm startSet the configuration in the MCP client process environment. The recommended least-privilege setup uses an API key:
{
"mcpServers": {
"mytube": {
"command": "npx",
"args": ["-y", "mytube-mcp"],
"env": {
"MYTUBE_BASE_URL": "https://mytube.example.com",
"MYTUBE_AUTH_MODE": "api-key",
"MYTUBE_API_KEY": "replace-with-your-mytube-api-key"
}
}
}
}For collection management, subscriptions, queue control, metadata edits, or uploads, use admin-session mode:
{
"mcpServers": {
"mytube": {
"command": "npx",
"args": ["-y", "mytube-mcp"],
"env": {
"MYTUBE_BASE_URL": "https://mytube.example.com",
"MYTUBE_AUTH_MODE": "admin-session",
"MYTUBE_ADMIN_PASSWORD": "replace-with-your-admin-password"
}
}
}
}The server keeps admin cookies and CSRF tokens in memory only. If MyTube has password login disabled, admin-session mode detects owner mode and proceeds without a password; otherwise MYTUBE_ADMIN_PASSWORD is required.
Related MCP server: yt-fetch
What is available
API-key mode exposes only the routes MyTube currently marks allowApiKey: true: download_video, list_videos, get_video, list_collections, and get_system_version. The current MyTube backend does not allow API-key access to /api/search, so search_videos is intentionally admin-only even though the design document’s MVP appendix listed it in the API-key catalog.
Admin-session mode adds search, URL inspection, progress/history, queue control, library mutations, uploads, collections, subscriptions, continuous-download tasks, maintenance, cloud signed URLs, resources, and prompts. Destructive tools are annotated and can be further restricted with MCP_ALLOWED_TOOLS.
download_video returns immediately by default. Set await_completion: true to poll MyTube’s active/queued/history endpoints and emit MCP notifications/progress when the client supplies a progress token. Polling is bounded by MYTUBE_DOWNLOAD_POLL_TIMEOUT_MS.
Configuration
Copy .env.example for the complete list. Important settings:
MYTUBE_BASE_URLis required. HTTPS is required for remote MyTube servers; local HTTP is allowed for localhost/127.0.0.1/*.local, or explicitly withMYTUBE_ALLOW_INSECURE_TLS=true.MYTUBE_AUTH_MODEisapi-keyby default oradmin-session.MCP_TRANSPORTisstdioby default. Set it tohttpfor Streamable HTTP.MCP_UPLOAD_ROOTSmust contain one or more directories before upload tools are enabled operationally. Symlink escapes are rejected.MYTUBE_ALLOW_INTERNAL_URLS=trueis required if trusted LAN/private URLs must be sent to MyTube.
Streamable HTTP
MCP_TRANSPORT=http \
MCP_HTTP_BIND=127.0.0.1 \
MCP_HTTP_PORT=3100 \
MCP_HTTP_BEARER_TOKEN='use-a-long-random-token' \
npx -y mytube-mcpThe endpoint is POST /mcp and the health check is GET /healthz. Bind to loopback by default. For remote access, put the server behind TLS termination and set MCP_HTTP_BEARER_TOKEN; non-loopback binds without a bearer token are rejected. See docs/transport.md.
Docker
A multi-arch image (linux/amd64, linux/arm64) is published to the GitHub Container Registry on every release:
docker pull ghcr.io/franklioxygen/mytube-mcp:latestRun it in Streamable HTTP mode (Docker only makes sense for the HTTP transport, not stdio):
docker run --rm -p 127.0.0.1:3100:3100 \
-e MYTUBE_BASE_URL=https://mytube.example.com \
-e MYTUBE_AUTH_MODE=api-key \
-e MYTUBE_API_KEY=replace-with-your-mytube-api-key \
-e MCP_TRANSPORT=http \
-e MCP_HTTP_BIND=0.0.0.0 \
-e MCP_HTTP_PORT=3100 \
-e MCP_HTTP_BEARER_TOKEN=use-a-long-random-token \
ghcr.io/franklioxygen/mytube-mcp:latestTags follow semantic versioning (0, 0.1, 0.1.0) plus latest. See examples/docker-compose.streamable-http.yml for a Compose setup, or build locally with docker build -t mytube-mcp ..
Development
npm install
npm run build
npm run lint
npm testSee SECURITY.md for the threat model and docs/tools.md for the tool catalog.
Compatibility note
The implementation was compared with MyTube v1.10.11 at the time of this release. MyTube returns raw arrays/objects on several legacy-compatible endpoints, so the client accepts both those responses and the documented { success, data } envelope. It uses MyTube’s actual mytube_auth_session and mytube_csrf cookie names and X-CSRF-Token header.
License
MIT. See LICENSE if this repository is distributed with a license file.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/franklioxygen/mytube-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server