# io.github.DinanathDash/envault (npm · @dinanathdash/envault-mcp-server)

Secure secret management with a Human-In-The-Loop (HITL) interceptor for agent mutations.

- Trust score: 67/100 (medium)
- Change this week: +25
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@dinanathdash/envault-mcp-server`: 67/100 (this document), [markdown](https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server.md), [page](https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@dinanathdash/envault-mcp-server`
- Version: `1.12.0`
- 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-08-03.

- **Supply Chain Security**: 80/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - Runs a script at install time (postinstall) that we could not recognise. It may be perfectly ordinary, but we do not read the published tarball, so we cannot say what it does.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 84/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to DinanathDash/Envault).
  - License check failed: the license (SEE LICENSE IN LICENSE) isn't a recognized OSI-approved license.
  - Actively maintained (last published 103 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1151 tokens (~50/item across 23 items; 23 tools + 0 resources), lean.
  - 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**: 68/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 4% of tool parameters carry a description.
- **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

### Claude

```bash
claude mcp add dinanathdash-envault -- npx -y @dinanathdash/envault-mcp-server
```

### Codex

```bash
codex mcp add dinanathdash-envault -- npx -y @dinanathdash/envault-mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add dinanathdash-envault --command npx --arg -y --arg @dinanathdash/envault-mcp-server
```

### Hermes

```yaml
mcp_servers:
  dinanathdash-envault:
    command: "npx"
    args: ["-y", "@dinanathdash/envault-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "dinanathdash-envault": {
      "command": "npx",
      "args": [
        "-y",
        "@dinanathdash/envault-mcp-server"
      ]
    }
  }
}
```

## 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-08-02 (score 67, +49)

- [security improvement] Provenance: unverified → pass
- [security improvement] Install scripts: unverified → partial
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [security] The scripts that run when this package is installed changed: postinstall
- [security] The attested source repository moved: DinanathDash/Envault
- [functional regression] License: unverified → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified
- [functional] Licence: SEE LICENSE IN LICENSE

### 2026-07-31 (score 18, −24)

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

### 2026-07-27 (score 42)

First indexed and scored.

## MCP tools (23)

### `envault_status` (~54 tokens)

Read-only context check for auth, project, role, permissions, active environment, and mapped local env file. Use this first when context is unclear.

Input parameters:

- `projectId` (string): Optional project ID override for status call.

### `envault_context` (~52 tokens)

Alias of envault_status for explicit context retrieval. Returns auth, project, role, permissions, active environment, and local env mapping.

Input parameters:

- `projectId` (string): Optional project ID override for context/status call.

### `envault_pull` (~72 tokens)

Fetch remote secrets into a local env file. Use before local development runs, diffs, or edits. This updates local files only and does not require HITL approval.

Input parameters:

- `environment` (string)
- `file` (string)
- `force` (boolean)
- `projectId` (string)

### `envault_push` (~127 tokens)

Submit local secret changes for HITL approval. IMPORTANT: treat this as an approval-request step, not immediate execution. If the response indicates pending approval (for example HTTP 202 Accepted with approval_id/approval_url), you must explicitly show the approval_url to the user, instruct them to open it in a browser and approve/reject, then wait for user confirmation or poll status before assuming changes are applied.

Input parameters:

- `dryRun` (boolean)
- `environment` (string)
- `file` (string)
- `force` (boolean)
- `projectId` (string)

### `envault_deploy` (~80 tokens)

Alias of envault_push. Same HITL behavior applies: if pending approval is returned, provide approval_url to the user and wait for approval completion before claiming success.

Input parameters:

- `dryRun` (boolean)
- `environment` (string)
- `file` (string)
- `force` (boolean)
- `projectId` (string)

### `envault_approve` (~50 tokens)

Approve a pending HITL request by approval ID. Use after envault_push/envault_deploy returns a pending approval. This executes the human approval action.

Input parameters:

- `approvalId` (string, required)

### `envault_diff` (~52 tokens)

Compare local env file against remote secrets and return additions, deletions, and modifications before proposing a push.

Input parameters:

- `environment` (string)
- `file` (string)
- `projectId` (string)

### `envault_run` (~65 tokens)

Run a local command with Envault secrets injected into process environment. Use when the user asks to run an app/script with managed secrets.

Input parameters:

- `args` (array)
- `command` (string, required)
- `environment` (string)
- `projectId` (string)

### `envault_login` (~32 tokens)

Start CLI device-flow login in the browser and store local CLI access token. Use when auth is missing or expired.

### `envault_init` (~28 tokens)

Initialize envault.json and project linkage in the current directory. Use for first-time project setup.

### `envault_generate_hooks` (~26 tokens)

Create or update git post-merge hook that triggers envault pull after merges.

### `envault_audit` (~67 tokens)

Audit local env safety and key parity. Can install pre-commit hook and emit text or JSON output.

Input parameters:

- `file` (string)
- `format` (string)
- `installHook` (boolean)
- `strict` (boolean)
- `template` (string)

### `envault_env_map` (~39 tokens)

Map an environment slug to a local env file path in envault.json.

Input parameters:

- `environment` (string, required)
- `file` (string, required)

### `envault_env_unmap` (~29 tokens)

Remove an environment-to-file mapping from envault.json.

Input parameters:

- `environment` (string, required)

### `envault_env_default` (~26 tokens)

Set the default environment in envault.json.

Input parameters:

- `environment` (string, required)

### `envault_mcp_install` (~38 tokens)

Install MCP integration config for local workspace and/or global editor clients.

Input parameters:

- `global` (boolean)
- `local` (boolean)

### `envault_mcp_update` (~46 tokens)

Update MCP package/config for local workspace and/or global editor clients.

Input parameters:

- `configOnly` (boolean)
- `global` (boolean)
- `local` (boolean)

### `envault_sdk_install` (~40 tokens)

Install Envault TypeScript SDK either in current project, globally, or both.

Input parameters:

- `global` (boolean)
- `local` (boolean)

### `envault_sdk_update` (~40 tokens)

Update Envault TypeScript SDK either in current project, globally, or both.

Input parameters:

- `global` (boolean)
- `local` (boolean)

### `envault_doctor` (~25 tokens)

Run local diagnostics for CLI installation, Homebrew source, and version parity.

### `envault_version` (~16 tokens)

Print installed Envault CLI version.

### `envault_set_local_key` (~78 tokens)

Set/update a key=value in local env file. If autoPush=true, this triggers envault_push and may return pending HITL approval requiring browser approval.

Input parameters:

- `autoPush` (boolean)
- `environment` (string)
- `file` (string)
- `key` (string, required)
- `value` (string, required)

### `envault_remove_local_key` (~69 tokens)

Remove a key from local env file. If autoPush=true, this triggers envault_push and may return pending HITL approval requiring browser approval.

Input parameters:

- `autoPush` (boolean)
- `environment` (string)
- `file` (string)
- `key` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 18
- 2026-07-31: 18
- 2026-07-30: 42
- 2026-07-28: 42
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/@dinanathdash/envault-mcp-server
- Socket report: https://socket.dev/npm/package/@dinanathdash/envault-mcp-server
- Repository: https://github.com/DinanathDash/Envault
- Changelog RSS feed: https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dinanathdash-envault/dinanathdash-envault-mcp-server
