Connect VicSee to Claude Code, Cursor, or any MCP-compatible client and generate AI videos, images, music, and voiceovers straight from your prompts.
Add the URL below as a remote connector in Claude (or any client with hosted-connector OAuth), then sign in to VicSee and approve. OAuth handles authentication, so there's nothing to copy or manage.
https://mcp.vicsee.com
For Cursor and any client with a bearer-token field. Point it at the same URL and authenticate with your VicSee API key — nothing to install.
https://mcp.vicsee.com
Authorization: Bearer sk-your-api-key
Run @vicsee/mcp-server over stdio with your API key. The most reliable path for OpenAI Codex, and the one to use when you need local-file uploads (the upload tool) — e.g. Claude Code turning local frames into a video. See the setup below.
Point your client at https://mcp.vicsee.com and send your VicSee API key as a bearer token — no install. Create a key in Settings → API (requires a paid plan or credit pack).
Any MCP client
Endpoint: https://mcp.vicsee.com Header: Authorization: Bearer sk-your-api-key
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"vicsee": {
"url": "https://mcp.vicsee.com",
"headers": { "Authorization": "Bearer ${env:VICSEE_API_KEY}" }
}
}
}The local server runs over stdio with your API key — the most reliable path for OpenAI Codex, and the one to use when you need local-file uploads (the upload tool). For Claude use the no-key connector; for Cursor, either method works.
Create a key in Settings → API. API access requires a paid plan or credit pack.
Drop @vicsee/mcp-server into your client's MCP config with your key.
Ask your agent to list models and generate — results come back as URLs you can download.
Claude Code (one command)
claude mcp add vicsee -e VICSEE_API_KEY=sk-... -- npx -y @vicsee/mcp-server
OpenAI Codex (~/.codex/config.toml)
[mcp_servers.vicsee]
command = "npx"
args = ["-y", "@vicsee/mcp-server"]
env = { VICSEE_API_KEY = "sk-your-key-here" }Claude Desktop / Cursor (mcpServers config)
{
"mcpServers": {
"vicsee": {
"command": "npx",
"args": ["-y", "@vicsee/mcp-server"],
"env": { "VICSEE_API_KEY": "sk-your-key-here" }
}
}
}Seven tools your agent can call once VicSee is connected.
Discover every available model, its capabilities, and credit cost.
“Which video models can you use on VicSee?”
Create a video or image from a text prompt or reference media.
“Generate a 6-second Seedance 2.0 clip of a hawk diving over a canyon.”
Upload a local image, video, or audio file and get a public URL to use as a reference input. Pass a file path, not base64.
“Upload my storyboard frames and turn them into a video.”
Check a generation by its id and return the result URL when it's ready.
“Is my last video done yet?”
Upscale an image to a higher resolution.
“Upscale this image to 4K.”
Upscale a video to a higher resolution.
“Upscale this clip to 1080p.”
Check the remaining credit balance on your account.
“How many credits do I have left?”
Call the latest models by name — your agent picks the parameters and generates. Run list_models for the full, current catalog with credit costs.
Everything you need to connect VicSee to your agent.
Get an API key and start generating from your MCP client today.