# Envie (npm · @golproductions/envie)

Your AI writes HTML; Envie renders it to video on your machine, verifies it and shows it back.

- Trust score: 68/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-26

## Components

- npm · `@golproductions/envie`: 68/100 (this document), [markdown](https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie.md), [page](https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie)

## Channel facts

- Registry: `npm`
- Package: `@golproductions/envie`
- Version: `0.8.9`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-26.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (SEE LICENSE IN LICENSE) isn't a recognized OSI-approved license.
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 78/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 648 tokens (~129/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 5 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 5 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the Envie MCP server?

Envie runs locally as an npm package, launched with npx -y @golproductions/envie. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add com-golproductions-envie -- npx -y @golproductions/envie
```

### Cursor

```json
{
  "mcpServers": {
    "com-golproductions-envie": {
      "command": "npx",
      "args": [
        "-y",
        "@golproductions/envie"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "com-golproductions-envie": {
      "command": "npx",
      "args": [
        "-y",
        "@golproductions/envie"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add com-golproductions-envie -- npx -y @golproductions/envie
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-golproductions-envie": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@golproductions/envie"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-golproductions-envie --command npx --arg -y --arg @golproductions/envie
```

### Hermes

```yaml
mcp_servers:
  com-golproductions-envie:
    command: "npx"
    args: ["-y", "@golproductions/envie"]
```

### Netclaw

```json
{
  "McpServers": {
    "com-golproductions-envie": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@golproductions/envie"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add com-golproductions-envie -t stdio -c npx -a -y @golproductions/envie
```

### Other

```json
{
  "mcpServers": {
    "com-golproductions-envie": {
      "command": "npx",
      "args": [
        "-y",
        "@golproductions/envie"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 68, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-09-24 (score 68)

First indexed and scored.

## MCP tools (5)

### `envie_guide` (~36 tokens)

Read this FIRST. Returns the authoring contract: how to write a composition HTML file that Envie can render into a verified video.

### `envie_render` (~261 tokens)

Render a composition HTML file into an MP4 video with optional voiceover, then machine-verify it (6 gates: container, streams, silence, black frames, freezes, dead endings). Returns the verification report and output path. Only use after reading envie_guide.

Input parameters:

- `audio_path` (string): Absolute path to an audio file (wav/mp3/m4a) to lay over the video. Works on every platform, and takes priority over narration. This is how you supply sound on macOS and Linux, where local TTS is una…
- `format` (string): Delivery codec, default h264 (.mp4). prores/prores4444/dnxhr require a .mov out_path. h265 is 10-bit.
- `fps` (number): Frames per second, default 24
- `html_path` (string, required): Absolute path to the composition HTML file
- `narration` (string): Voiceover script, spoken over the video using local TTS. WINDOWS ONLY. On macOS or Linux use audio_path instead. Videos with no audio at all fail verification (G2/G3).
- `out_path` (string, required): Absolute path for the output MP4
- `voice` (string): Optional TTS voice name hint

### `envie_verify` (~43 tokens)

Run the 6 Envie verification gates against any existing MP4 and get the pass/fail report.

Input parameters:

- `video_path` (string, required): Absolute path to the MP4

### `envie_see` (~151 tokens)

LOOK at your work. Returns actual frames (as images) from a composition HTML or a rendered MP4 at chosen timestamps. Use this to visually inspect layout, text readability, overlaps, and scene composition with your own eyes, then fix the composition and render again. The verification gates prove a video is alive; envie_see is how you judge whether it is good. Default: frames at 0%, 25%, 50%, 75%, 95% of the timeline.

Input parameters:

- `path` (string, required): Absolute path to a composition .html or a rendered .mp4
- `timestamps_ms` (array): Timeline positions in milliseconds to capture (max 12). Omit for the default five.

### `envie_translate` (~157 tokens)

HEAR and MEASURE your work. Reads a finished video back as data you can act on without eyes or ears: per-frame motion, every cut, still holds, integrated loudness (LUFS), true peak, every audio transient, and how far each audio hit sits from the nearest cut in milliseconds. envie_see shows you stills and is blind between them; envie_translate measures motion and sound across the whole file. Use it after envie_render to judge pacing and audio sync, then fix the composition and render again.

Input parameters:

- `out_dir` (string): Optional directory for the receipt assets (keyframes, spectrogram, timeline strip, contact sheet, HTML report)
- `video_path` (string, required): Absolute path to the rendered video

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie#diagnostics

## Score history

- 2026-09-26: 68
- 2026-09-25: 68
- 2026-09-24: 68

## Common questions

### What is the Envie MCP server?

Envie is an MCP server listed in the public MCP registry as com.golproductions/envie. Your AI writes HTML; Envie renders it to video on your machine, verifies it and shows it back. This page covers its npm package (@golproductions/envie).

### Is the Envie MCP server safe to use?

Envie scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Envie MCP server expose?

Envie exposes 5 tools: envie_guide, envie_render, envie_verify, envie_see, envie_translate. Their descriptions and schemas cost roughly 648 tokens of context every time the server is loaded.

### Is the Envie MCP server still maintained?

Envie is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- npm package: https://www.npmjs.com/package/@golproductions/envie
- Socket report: https://socket.dev/npm/package/@golproductions/envie
- Repository: https://github.com/golproductions/envie
- Website: https://golproductions.com/envie
- Changelog RSS feed: https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie.json
- HTML version of this page: https://verifymcp.io/servers/com-golproductions-envie/golproductions-envie
