Skip to content
Back to search
100
MCP live MCP 2026-07-28 streamable-http

My TV Channel

com.my-tv-channel/my-tv-channel

Create and run 24/7 linear TV channels. Import videos by URL; we transcode, schedule and stream.

Uptime
100.0%
1 direct probes · 30d
Response
57ms
last probe
Tools
19
callable
Resources
0
readable
Prompts
0
available

Tools · 19

get_account_status

Start here. Returns who the account is, its subscription tier and limits, how much weekly upload/stream quota is used and remaining, and every channel the owner has with its ready-asset count and what…

list_channels

List the channels owned by this account.

get_channel

Get one channel by id. Includes scheduleStatus (inactive | pending | active | error) — poll this to confirm a channel has gone live — plus watchUrl, launchedAt and isArchived.

check_handle_available

Check whether a channel handle is free before trying to create it. The handle becomes the subdomain: {handle}.my-tv-channel.com. 3-63 chars, lowercase a-z, 0-9 and hyphens.

create_channel

Create a 24/7 linear TV channel. It will NOT be live yet — a channel goes live automatically once it has at least 4 ready assets AND at least 15 minutes of total content. is_public lists it in Discove…

update_channel

Update an existing channel: name, description, visibility, category, language, age rating, or the community chat link. Only send the fields you are changing.

archive_channel

Take a channel off the air and out of every listing. This ARCHIVES rather than destroys: the handle stays reserved and assets and schedule history are retained, so it can be restored. Refuses with 409…

import_video_from_url

Add a video to a channel from a direct media URL. THIS IS THE MAIN WAY TO ADD CONTENT over MCP — you cannot upload local file bytes through this interface, so if the owner has local files, ask them to…

import_youtube_video

Import a YouTube video that the OWNER UPLOADED THEMSELVES. This will not work for anyone else's video, by design — a channel built from other people's videos is a copyright problem for the owner. Own…

list_assets

List the videos on a channel.

get_transcode_status

Poll transcode progress. Give either channel_id (all its videos) or asset_id (one). Each asset reports uploadStatus (downloading -> pending -> transcoding -> ready) and the summary tells you when meet…

set_asset_weight

Change how often a video plays (weight 0-10, default 5; 0 removes it from rotation entirely), and optionally its title or tags. IMPORTANT ORDERING: weights only affect what actually airs when the sche…

delete_asset

Remove a video from a channel. Soft delete — it stops being scheduled immediately and the schedule regenerates automatically. Idempotent. The asset is retained and stops being scheduled; it is not era…

retry_transcode

Re-queue a video whose transcode failed. Only works on assets in a failed state.

regenerate_schedule

Rebuild the channel's schedule now using the current weights. Call this after changing weights on a channel that is ALREADY live, otherwise the change will not air until the hourly cron. Throttled to …

get_schedule

Read the channel's EPG — what is playing and what is coming up. Note this one returns a plain array of entries (unlike other tools, which return an object).

get_schedule_rules

Read the channel's declarative schedule rules (fixed time slots and dayparts), plus its scheduling mode and timezone.

validate_schedule_rules

DRY-RUN a ruleset. Saves nothing. Returns {valid, errors, warnings, preview} where preview is a simulated 24h grid of what would actually air. Intended as the dry run for set_schedule_rules: rules are…

set_schedule_rules

Give the channel a durable schedule: fixed slots ("news at 18:00") and dayparts ("no kids content after 22:00"). The scheduler re-honours these on EVERY rebuild, so you set them once instead of babysi…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "my_tv_channel": {
      "url": "https://my-tv-channel.com/api/mytvchannel/mcp",
      "transport": "streamable-http"
    }
  }
}