npm @vicsee/mcp-serverstreamable-httpMITupdated 21d ago
Generate, edit, and upscale AI video & images from any agent — VicSee as a set of MCP tools.
O que dá para fazer com vicsee mcp server?
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
| Tool | What it does |
|---|---|
vicsee_list_models |
List available models (Seedance, Veo, Kling, FLUX, Nano Banana, …) + their credit costs |
vicsee_generate |
Text/image → video or image with a chosen model |
vicsee_get_task |
Poll a task and get the finished media URL |
vicsee_upscale_image |
Upscale an image |
vicsee_upscale_video |
Upscale a video |
vicsee_get_credits |
Check 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
- Get an API key at vicsee.com → Settings → API (starts with
sk-). API access requires a paid plan or credit pack. - 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.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 tohttps://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."
vicsee_list_models(type: video) → pick e.g.seedance-2-5-text-to-video(up to 30s) orseedance-2-0-text-to-video(adds 1080p/4K)vicsee_generate(model, prompt, duration: 5) →{ id, status: "pending" }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_modelsfor per-model costs andvicsee_get_creditsfor your balance.
License
MIT
Instalação
Adicione vicsee mcp server ao seu cliente. Escolha o que você usa.
{
"servers": {
"mcp-server": {
"type": "http",
"url": "https://mcp.vicsee.com"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server -- npx -y @vicsee/mcp-servercodex mcp add mcp-server -- npx -y @vicsee/mcp-serveramp mcp add mcp-server -- npx -y @vicsee/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@vicsee/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @vicsee/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação22/25
- Manutenção25/25
- Confiança16/20
- Capacidade0/15
- Instalação15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 14 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.3.3Mais recente | 29 de jul. de 2026 |
| 0.3.2 | 15 de jun. de 2026 |
| 0.3.1 | 15 de jun. de 2026 |