AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Holster MCP

mcp-nauta-ai-holster · by nauta-ai

Local-first secret scanning, rotation, vault, and audit-log tools for AI agents.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add mcp-nauta-ai-holster

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.1 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.1. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-nauta-ai-holster)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Holster MCP? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Holster

Local-first API key manager for AI developers.

Install

macOS Apple Silicon (M-series)

  1. Download holster-cli-macos-arm64.tar.gz + .sha256 from the latest release: https://github.com/nauta-ai/holster/releases/latest
  2. Extract: tar xzf holster-cli-macos-arm64.tar.gz
  3. Verify: shasum -a 256 -c holster-cli-macos-arm64.tar.gz.sha256
  4. Install: sudo mv holster-cli /usr/local/bin/
  5. If macOS blocks first run: xattr -d com.apple.quarantine /usr/local/bin/holster-cli
  6. Verify: holster-cli --version

macOS Intel (x86_64, since v0.7.0)

  1. Download holster-cli-macos-x86_64.tar.gz + .sha256 from the latest release.
  2. Same extract / verify / install steps as above.

Linux x86_64

  1. Download holster-cli-linux-x86_64.tar.gz + .sha256 from the latest release.
  2. Extract: tar xzf holster-cli-linux-x86_64.tar.gz
  3. Verify: shasum -a 256 -c holster-cli-linux-x86_64.tar.gz.sha256
  4. Install: sudo mv holster-cli /usr/local/bin/
  5. Verify: holster-cli --version

Password handling on Linux: macOS Keychain is not available. Use --password-env to read the vault password from an environment variable, or --password-stdin to pipe it via stdin.

Windows x86_64 (since v0.7.0)

  1. Download holster-cli-windows-x86_64.zip + .sha256 from the latest release.
  2. Verify: in PowerShell, (Get-FileHash -Algorithm SHA256 holster-cli-windows-x86_64.zip).Hash should match the value in the .sha256 file.
  3. Extract: Expand-Archive holster-cli-windows-x86_64.zip -DestinationPath .
  4. Move holster-cli.exe somewhere on $env:Path (e.g. C:\Users\\bin\ after adding that folder to PATH).
  5. Verify: holster-cli.exe --version

Password handling on Windows: macOS Keychain is not available. Use --password-env or --password-stdin.

Rotating the master password (since v0.7.0)

Holster lets you change the vault's master password without re-creating the vault or losing entries:

holster-cli rotate-master /path/to/vault
# Prompts for OLD master, then NEW master twice (confirm)

This re-encrypts every entry under the new master and regenerates the vault salt under a single SQLite transaction. If the rotation fails or is interrupted, the vault remains intact under the old master.

If you cache the master password in macOS Keychain (common for daemon usage), pass --keychain-update SERVICE,ACCOUNT to update the cached entry in the same command:

holster-cli rotate-master /path/to/vault \
  --keychain-update holster-personas-vault,admin

For unattended / scripted rotation:

# OLD pw from Keychain, NEW pw from env
holster-cli rotate-master /path/to/vault \
  --old-password-keychain-service holster-personas-vault \
  --old-password-keychain-account admin \
  --new-password-env NEW_HOLSTER_MASTER

# Both from stdin (one line each, OLD first then NEW)
printf '%s\n%s\n' "$OLD_PW" "$NEW_PW" | \
  holster-cli rotate-master /path/to/vault \
  --old-password-stdin --new-password-stdin

Rotate the master password:

  • After any suspected credential exposure
  • After a team member who knew the master leaves
  • Quarterly as routine hygiene
  • Whenever the master appears in plaintext somewhere (logs, configs, transcripts)

Password sources (since v0.7.0)

get, add, rotate-master, and exec-env now accept the master password from multiple sources. Precedence (first non-None wins):

  1. --password-env — read from an environment variable
  2. --password-stdin — read first line of stdin
  3. --password-keychain-service [--password-keychain-account ] — macOS Keychain
  4. Interactive TTY prompt (fallback)

This makes Holster scriptable from CI, launchd, systemd, and daemon contexts without requiring an interactive TTY.

Documentation

Read docs/framework/00_README.md to start.

holster guard

holster guard . preflights a repo before you run an AI agent against it or share/commit it. It prints a local RUN verdict, a SHARE verdict, and a ranked fix list without exposing raw secret values.

RUN VERDICT:   CAUTION
SHARE VERDICT: RISKY

Why:
  1. [SHARE/RISK] OPENAI_API_KEY in .env.local:3
  2. [SHARE/RISK] .env.local not gitignored — will be committed
  3. [RUN/CAUTION] MCP server "cursor" inherits full shell environment

Fix order:
  1. Add .env.local and *.pem to .gitignore
  2. Move live keys into the Holster vault (holster add ...)
  3. Pin or approve the MCP wrapper command

For a redacted report that is safe to paste into a review thread:

holster guard . --share-report holster-guard-report.md

Status

v0.7.0 — early access. Holster includes the local vault CLI, rotate-master, scriptable password sources, Windows/macOS-x86_64 builds, and early holster guard preflight checks. Vault crate stable since M1.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.1 Imported from the upstream source.