Vicsee Mcp Server logoHealth: ActiveRecent health check succeeded.Last checked 8/7/2026, 3:36:14 PM

Vicsee Mcp ServerArt & Culture

vicseeai
View Repository

Generate, edit, and upscale AI videos and images asynchronously via multiple models with credit-based usage.

Overview

This MCP server enables agents to generate, edit, and upscale AI-created videos and images using various models such as Seedance, Veo, Kling, FLUX, and Nano Banana. It supports asynchronous task handling where generation or upscaling requests return task IDs that agents poll for completion and media URLs. The server requires an API key from vicsee.com and integrates with MCP-compatible clients like Hermes Agent, Claude, Cursor, and OpenClaw. Use it when you need programmatic access to AI media generation and enhancement within an agent workflow.

Use cases

โ€ขGenerate AI videos or images from text or images
โ€ขUpscale existing AI-generated images or videos
โ€ขPoll and retrieve completed media generation tasks
โ€ขCheck available AI generation models and their credit costs
โ€ขMonitor credit balance for usage management

Key features

โ€ขSupports multiple AI video and image generation models
โ€ขAsynchronous generation and upscaling with task polling
โ€ขCredit-based usage with model cost listing and balance checking
โ€ขIntegration with various MCP-compatible agents and clients
โ€ขConfigurable API base URL and local development support

Quick Install

Automated & IDE Setup

Copy the AI prompt to automatically install this server into your coding agent (Claude Code, Cursor, etc.), or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON โ–พ

Install Config Generator

claude_desktop_config.json
{
  "mcpServers": {
    "vicseeai-vicsee-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@vicsee/mcp-server"
      ]
    }
  }
}

๐Ÿ’ก Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Capabilities & Tool Schemas

Inspect callable tools, capabilities, and parameters exposed to AI agents by Vicsee Mcp Server.

Extracted Tool Capabilities
Supports multiple AI video and image generation models
Asynchronous generation and upscaling with task polling
Credit-based usage with model cost listing and balance checking
Integration with various MCP-compatible agents and clients
Configurable API base URL and local development support

Documentation Overview

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:
config.json
{
  "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.json โ†’ mcpServers
  • 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

bash
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-0-text-to-video
  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

Related MCP Servers

View all alternatives

Frequently Asked Questions about Vicsee Mcp Server

What is the Vicsee Mcp Server MCP server used for?

Generate, edit, and upscale AI video & images (Seedance, Veo, Kling, FLUX, Nano Banana) from any agent via VicSee.

How do I install Vicsee Mcp Server in Claude Desktop or Cursor?

Copy the client configuration JSON snippet from the installation section above into your claude_desktop_config.json or .cursor/mcp.json file, then restart your AI application.

Is the Vicsee Mcp Server MCP server free and safe to use?

Yes, Vicsee Mcp Server is listed as a free Model Context Protocol server. Always review repository source code and permissions before granting local workspace access to AI agents.

Technical Specs & Signals

TransportSTDIO
RuntimeNode.js
Health CheckActive
Views0
Installs0
GitHub stars0
29Quality signal: Emerging ยท 29/100How this signal is calculated โ–พ
Server availabilityNot measured

Not scored for repo-hosted servers โ€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools14/30
Adoption0/15
Community engagement0/10

A guidance signal from public completeness & health data โ€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

โ˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server โ†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge โ€” we recheck it stays live.

Claim & get free dofollow

Promote this listing

Optional paid placement. Free listings stay free forever.

Featured boost7 days in the spotlight ยท from $12/wk
Weeks
1

โ†’ Runs until Aug 14, 2026

Category sponsorTop-of-category sponsorship ยท from $18/wk
Weeks
1

โ†’ Runs until Aug 14, 2026

Cancel anytime โ€” no long-term lock-in.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.