← uta.live
INDIVIDUAL MCP TOOL
uta_job_status
uta_add_song / uta_prepare_song が返した job_id の進捗を確認する (status/progress/message)。statusがreadyになれば歌える。
Input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests sending messages.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.uta-live]
url = "https://uta.live/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"uta-live": {
"type": "http",
"url": "https://uta.live/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: uta-live
Remote MCP URL: https://uta.live/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"uta-live": {
"url": "https://uta.live/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"uta-live": {
"type": "http",
"url": "https://uta.live/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "uta-live",
"transport": "streamable-http",
"url": "https://uta.live/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
uta_search_catalog— uta.live の即歌えるカラオケカタログ(1500曲+)をタイトル/アーティスト名で検索する。ヒットした曲は video_id を uta_get_song に渡すと歌詞が読める。再生URLは https://uta.live/play/<video_id>uta_get_song— 曲の詳細 (タイトル・歌詞全文・行数・カラオケ伴奏の有無・再生URL) を返す。uta_kpi— uta.live のサービスKPI (カタログ数・即歌える曲数・処理時間など) を返す。uta_search_youtube— YouTubeから曲を検索して候補(最大5件)を返す。気に入った候補の video_id と title を uta_prepare_song に渡すとカラオケ化できる。uta_add_song— 音声ファイルURL (mp3/m4a/wav, 30MBまで) から新曲をuta.liveにカラオケ化して追加する。demucsボーカル除去とwhisper歌詞起こしが自動で走る (数分)。歌詞が分かっている曲は完了後に uta_set_lyrics で正歌詞に差し替えると字幕品質が劇的に上がる。認証必須: Authorization: Bearer <UTA_MCP_TOKEN>。uta_prepare_song— YouTube動画 (uta_search_youtube の候補) をカラオケ化する。ダウンロード→demucsボーカル除去→歌詞起こしが自動で走る (数分)。uta_job_status で進捗確認。認証必須。uta_score— 歌唱採点 (beta)。video_id のリファレンスボーカルと、歌った音声の audio_url をピッチ比較して0-100点を返す。⚠歌唱はボーカルのみの録音(マイク録り/アカペラ)を渡すこと。伴奏入りmixは楽器のピッチを拾い正しく採点できない。初回呼び出しで score_id が返り、score_id を渡して再呼び出しすると結果を取得 (解析は数十秒)。オクターブ差は補正する。認証必須。uta_set_lyrics— 曲の歌詞を「正しい歌詞テキスト」に差し替える。音声(ボーカルstem)をSTTで単語タイムスタンプ化し、渡された正歌詞を強制整列するので、whisper自動起こしが乱れた歌モノでも正確なカラオケ字幕になる。1行=1表示行で改行区切り。認証必須。