vicsee-mcp-server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VICSEE_API_KEY | Yes | Your API key from vicsee.com (starts with sk-) | |
| VICSEE_BASE_URL | No | Override the API base URL (defaults to https://vicsee.com/api/v1) | https://vicsee.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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| vicsee_list_modelsA | List available VicSee models with their capabilities and credit costs. Call this first to find a model id to pass to vicsee_generate. Optionally filter by media type. |
| vicsee_generateA | Create an AI image or video with VicSee. Generation is ASYNCHRONOUS: this returns a task |
| vicsee_get_taskA | Poll a generation or upscale task by its id. status is one of "pending" | "processing" | "queued" | "completed" | "failed". When "completed", the media URL is in result.url (videos/images) or result.songs (music). When "failed", details are in error. Poll every few seconds until completed or failed. |
| vicsee_upscale_imageA | Upscale a publicly accessible image (JPEG/PNG/WebP). Asynchronous: returns a task id — poll vicsee_get_task until completed. upscale_factor defaults to "2". |
| vicsee_upscale_videoA | Upscale a publicly accessible video (MP4/MOV/MKV, up to 60s). Asynchronous: returns a task id — poll vicsee_get_task until completed. upscale_factor defaults to "2". |
| vicsee_get_creditsA | Get the current VicSee credit balance for the configured API key. |
| vicsee_uploadA | Upload a LOCAL file (image, video, or audio) from this machine and get back a public https URL. Use the returned url as an input for vicsee_generate — e.g. drop it into reference_image_urls for a reference-to-video storyboard, or image_urls for image-to-video. PREFER this over inline base64 for references: large base64 strings get truncated in tool-call output and the model rejects them. The file uploads directly to storage; only its public URL comes back. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct function: generation, credits, task polling, model listing, file upload, and upscaling (image/video). No overlap in purpose.
All tools follow a consistent 'vicsee_verb_noun' pattern in snake_case, making them predictable and easy to distinguish.
7 tools cover the core workflows (generation, upscaling, polling, listing, uploading, credits) without being excessive or sparse.
The surface covers generation, upscaling, and account operations. Missing a cancel/delete task endpoint, but the core async workflow is fully supported.