ssemble-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SSEMBLE_API_KEY | Yes | Your Ssemble API key (starts with sk_ssemble_) | |
| SSEMBLE_API_BASE_URL | No | Override API base URL (default: https://aiclipping.ssemble.com/api/v1) | https://aiclipping.ssemble.com/api/v1 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_shortA | Create AI-generated short-form video clips from a YouTube video or uploaded file. Returns a request ID instantly. Processing takes 5-30 minutes. Costs 1 credit. |
| get_statusA | Check processing status and progress of a short creation request. Returns status (queued/processing/completed/failed), progress percentage, and current step. |
| get_shortsA | Retrieve all generated short clips for a completed request. Returns video URLs, AI-generated titles, descriptions, viral scores, and durations sorted by viral score. |
| list_requestsA | List all short creation requests with optional status filtering, pagination, and sorting. |
| delete_requestA | Permanently delete a short creation request and all generated videos. Credits are NOT refunded. This action is irreversible. |
| list_templatesA | List all available caption style templates with IDs and names. Use the templateId when creating shorts. |
| list_musicA | List available background music tracks with names and durations. Use the exact musicName when creating shorts. |
| list_game_videosA | List available gameplay videos for split-screen overlays (content top, game bottom). Use the exact gameVideoName when creating shorts. |
| list_meme_hooksA | List available meme hook clips (2-5 second attention grabbers prepended to shorts). Use the exact memeHookName when creating shorts. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| create-viral-short | Guided workflow for creating an optimized viral short from a YouTube video |
| batch-process-videos | Template for processing multiple YouTube videos into shorts |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| supported-languages | |
| preferred-lengths | |
| layouts |
TDQS
Scored across 9 tools
Each tool has a distinct, non-overlapping purpose. The four 'list_' tools target different resource types (game videos, meme hooks, music, templates), while lifecycle tools (create_short, get_status, get_shorts, delete_request) clearly separate creation, monitoring, retrieval, and cleanup phases without ambiguity.
Perfect consistency with snake_case verb_noun pattern throughout (create_short, delete_request, get_shorts, get_status, list_requests, etc.). All list operations use the 'list_' prefix, retrieval uses 'get_', and mutation uses 'create_' or 'delete_' predictably.
Nine tools is an ideal scope for this domain—covering the full video generation lifecycle (create, status check, retrieval, deletion, listing) plus four discovery tools for auxiliary resources (games, memes, music, templates). No bloat, no gaps in the surface area.
Covers the essential CRUD operations and resource discovery well. Minor gap: lacks a 'get_request' singular operation to fetch metadata for a specific request without listing all; agents must use list_requests with filtering or combine get_status/get_shorts to reconstruct request state. No cancel/pause functionality mentioned.