VicSee
Generate, edit and upscale AI video and images from any agent.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Vicsee List Models: 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 Generate: Create an AI image or video with VicSee. Generation is ASYNCHRONOUS: this returns a task `id` immediately, then poll `vicsee_get_task` with that id until status is "completed" (the re
- Vicsee Get Task: 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/im
What data it sees
Do you need an account
No: the server works without sign-in
Generate, edit and upscale AI video and images from any agent. Models include Seedance, Veo, Kling, FLUX, and Nano Banana. OAuth sign-in, no API key needed.
Server tool list (6)
Raw names from tools/list. Only developers need these.
| vicsee_list_models | 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_generate | Create an AI image or video with VicSee. Generation is ASYNCHRONOUS: this returns a task `id` immediately, then poll `vicsee_get_task` with that id until status is "completed" (the result URL appears in result.url) or "failed". Use vicsee_list_models to pick a `model` and see its valid options. For image-to-video / image-to-image, pass source images in `image_urls`. For reference-to-video models (e.g. "seedance-2-0-reference-to-video"), pass references in reference_image_urls / reference_video_urls / reference_audio_urls and refer to them positionally in the prompt as @Image1, @Image2, … IMAGE inputs (image_urls, reference_image_urls) may be a public https URL or a base64 data URI (this hosted connector can't read local files — host the image at a public URL, or use the @vicsee/mcp-server npm package, which uploads local files for you). VIDEO/AUDIO inputs (reference_video_urls, reference_audio_urls) must be public https URLs. |
| vicsee_get_task | 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_image | 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_video | 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_credits | Get the current VicSee credit balance for the configured API key. |