Back to Browse

Vicsee MCP Server

Developer ToolsModerate5.2MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Generate, edit and upscale AI video and images from any agent via VicSee.

About

Generate, edit and upscale AI video and images from any agent via VicSee.

Remote endpoints: streamable-http: https://mcp.vicsee.com

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-architected MCP server for VicSee's video/image generation API with solid security practices. Authentication is properly handled via API keys (stdio) and OAuth (Worker), credentials are never hardcoded, and input validation is comprehensive. The codebase is clean with appropriate error handling. Minor findings around logging and token validation do not materially impact security given the server's purpose and permission scope. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

7 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

VicSee API key (starts with sk-) from vicsee.com Settings then API. Requires a paid plan or credit pack.Required

Environment variable: VICSEE_API_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

VicSee MCP Server

Generate, edit, and upscale AI video & images from any agent — VicSee as a set of MCP tools.

Works with Hermes Agent, Claude (Desktop / Code), Cursor, OpenClaw, and any MCP-compatible client.

What your agent can do

ToolWhat it does
vicsee_list_modelsList available models (Seedance, Veo, Kling, FLUX, Nano Banana, …) + their credit costs
vicsee_generateText/image → video or image with a chosen model
vicsee_get_taskPoll a task and get the finished media URL
vicsee_upscale_imageUpscale an image
vicsee_upscale_videoUpscale a video
vicsee_get_creditsCheck your credit balance

Generation is asynchronous: vicsee_generate (or vicsee_upscale_*) returns a task id immediately — your agent then polls vicsee_get_task until status is completed and reads the URL from result.url.

Setup

  1. Get an API key at vicsee.com → Settings → API (starts with sk-). API access requires a paid plan or credit pack.
  2. Add the server to your MCP client config with that key:
{
  "mcpServers": {
    "vicsee": {
      "command": "npx",
      "args": ["-y", "@vicsee/mcp-server"],
      "env": { "VICSEE_API_KEY": "sk-your-key-here" }
    }
  }
}

That's the whole setup — drop in your key, and your agent can generate.

Client config locations

  • Claude Desktop: claude_desktop_config.jsonmcpServers
  • Cursor: Settings → MCP → add server (same command/args/env)
  • Hermes Agent / OpenClaw: add to the MCP servers section of your agent config
  • Claude Code: claude mcp add vicsee -e VICSEE_API_KEY=sk-... -- npx -y @vicsee/mcp-server

Optional env

  • VICSEE_BASE_URL — override the API base URL (defaults to https://vicsee.com/api/v1).

Local development

pnpm install
pnpm build
VICSEE_API_KEY=sk-... node dist/index.js   # stdio server
# or run from source: VICSEE_API_KEY=sk-... pnpm dev

Point your MCP client at the local build by using "command": "node", "args": ["/abs/path/to/dist/index.js"].

Example agent flow

"Make me a 5-second video of a kitten chasing a laser."

  1. vicsee_list_models (type: video) → pick e.g. seedance-2-5-text-to-video (up to 30s) or seedance-2-0-text-to-video (adds 1080p/4K)
  2. vicsee_generate (model, prompt, duration: 5) → { id, status: "pending" }
  3. vicsee_get_task (id) … poll … → { status: "completed", result: { url: "https://cdn.vicsee.com/…" } }

Notes

  • Result URLs are served from cdn.vicsee.com — stable VicSee CDN links.
  • Each generation costs credits; see vicsee_list_models for per-model costs and vicsee_get_credits for your balance.

License

MIT

Reviews

No reviews yet

Be the first to review this server!