# io.github.mdfifty50-boop/secure-vault (npm · secure-vault-mcp)

Encrypted secrets and credential management for agents

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

## Components

- npm · `secure-vault-mcp`: 59/100 (this document), [markdown](https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp.md), [page](https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp)

## Channel facts

- Registry: `npm`
- Package: `secure-vault-mcp`
- Version: `0.1.1`
- 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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 100 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 45/100
  - 0% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 583 tokens (~72/item across 8 items; 7 tools + 1 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**: 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.
- **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 mdfifty50-boop-secure-vault -- npx -y secure-vault-mcp
```

### Codex

```bash
codex mcp add mdfifty50-boop-secure-vault -- npx -y secure-vault-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mdfifty50-boop-secure-vault": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "secure-vault-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mdfifty50-boop-secure-vault --command npx --arg -y --arg secure-vault-mcp
```

### Hermes

```yaml
mcp_servers:
  mdfifty50-boop-secure-vault:
    command: "npx"
    args: ["-y", "secure-vault-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mdfifty50-boop-secure-vault": {
      "command": "npx",
      "args": [
        "-y",
        "secure-vault-mcp"
      ]
    }
  }
}
```

## 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 59, +40)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 19, −5)

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

### 2026-07-30 (score 24, −20)

- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 0 → unverified

### 2026-07-28 (score 44, +20)

- [functional improvement] Schema quality: unverified → 0
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (7)

### `health_check` (~20 tokens)

Returns server health, uptime, version, and call stats

### `store_secret` (~105 tokens)

Store an encrypted secret with optional rotation policy. Value is encrypted at rest with AES-256-GCM.

Input parameters:

- `name` (string, required): Secret name (e.g. "openai_api_key", "stripe_live")
- `rotation_policy` (string): Automatic rotation reminder policy
- `service` (string): Service this secret belongs to (e.g. "openai", "stripe")
- `value` (string, required): The secret value to store — encrypted immediately, never stored in plaintext

### `get_agent_token` (~129 tokens)

Issue a short-lived, scoped token for an agent to use a secret. The agent receives an opaque token ID — never the raw secret. Use inject_secret_to_request to apply the token to an outbound request.

Input parameters:

- `agent_id` (string, required): Identifier of the requesting agent
- `scope` (string): Permission scope for this token
- `service` (string, required): Service name to get a token for (must match a stored secret's service)
- `ttl_seconds` (integer): Token time-to-live in seconds (default 300 = 5 min, max 86400 = 24h)

### `rotate_secrets` (~69 tokens)

Rotate all secrets for a given service. Old values are overwritten, and all outstanding tokens for those secrets are invalidated.

Input parameters:

- `new_value` (string, required): The new secret value to replace the old one
- `service` (string, required): Service whose secrets to rotate (e.g. "openai")

### `audit_secret_access` (~70 tokens)

View an audit trail of who accessed which secrets over a time range.

Input parameters:

- `agent_id` (string): Filter by specific agent (omit for all agents)
- `secret_name` (string): Filter by specific secret name (omit for all secrets)
- `time_range` (string): Time range to query

### `scan_config_for_leaks` (~92 tokens)

Scan a config text for exposed secrets — API keys, tokens, passwords, private keys. Uses 12 regex patterns covering AWS, GitHub, OpenAI, Anthropic, Slack, Stripe, and generic credentials.

Input parameters:

- `config_text` (string, required): The config file content or JSON/YAML text to scan
- `source_label` (string): Label for where this config came from (for audit trail)

### `inject_secret_to_request` (~94 tokens)

Return a request object with the secret injected. Pass a token_id obtained from get_agent_token and a request template with a {{SECRET}} placeholder. The server substitutes the real secret — the agent never handles the raw value.

Input parameters:

- `request_template` (string, required): Request template with {{SECRET}} placeholder (e.g. JSON body, header string, URL)
- `token_id` (string, required): Token ID from get_agent_token

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp#diagnostics

## Score history

- 2026-08-03: 59
- 2026-08-02: 59
- 2026-08-01: 19
- 2026-07-31: 19
- 2026-07-30: 24
- 2026-07-28: 44
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/secure-vault-mcp
- Socket report: https://socket.dev/npm/package/secure-vault-mcp
- Repository: https://github.com/mdfifty50-boop/secure-vault-mcp
- Changelog RSS feed: https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mdfifty50-boop-secure-vault/secure-vault-mcp
