This MCP server provides read-only access to secrets stored in a local KeePassXC vault. It operates by running commands with secret values injected, enabling downstream tooling to use vault contents without modifying the vault.
๐ ๏ธ Key Features
Read-only access to a local KeePassXC vault
Secrets are injected when running commands
Server is identified as io.github.yarrasys/kdbx
๐ Use Cases
Retrieve and use secrets from a local KeePassXC vault
Support workflows that require vault-backed credentials without write access
โก Developer Benefits
Enables command execution that uses injected vault secrets
Avoids vault modification by limiting access to read-only operations
โ ๏ธ Limitations
Limited to local KeePassXC vault access
No capability for updating or writing secrets to the vault
kdbx keeps a project's secrets in a per-project, per-environment KeePassXC vault
(KDBX4, unlocked by a key file only โ no master password) and gets them into the tools that
need them without kdbx ever printing them into a transcript, a log file, or your shell
history.
Discovery is automatic: kdbx walks up from your current directory to a committed
.keepassxc.json pointer file, works out which environment is active, and takes it from
there. The headline command is kdbx run -- <cmd>, which resolves that environment's
variable mappings and injects them into a child process' environment. It replaces .env
files as the source of truth; the vault stays outside the repo, so there is nothing secret
to accidentally commit.
Every install method below is live โ the curl installer, Homebrew, go install, the
ghcr.io container image, and the signed release archives (SHA256SUMS + cosign, with
reproducible builds). The badge above tracks the current version.
Install
sh
# curl installer โ downloads the release archive, verifies its SHA-256, installs to# ~/.local/bin (override with KDBX_INSTALL_DIR; pin with KDBX_VERSION=v0.2.1)
curl -LsSf https://raw.githubusercontent.com/yarrasys/kdbx/main/install.sh | sh
sh
brew install yarrasys/tap/kdbx # Homebrew
go install github.com/yarrasys/kdbx@latest # from source, needs Go 1.25+
docker run --rm ghcr.io/yarrasys/kdbx:latest --version # container (FROM scratch)
Windows: download the _windows_ archive from the
releases page and put kdbx.exe on your PATH.
Building from source needs Go 1.25 or newer (the KDBX engine and golang.org/x/term
both declare a 1.25 floor). Release binaries are static and impose no toolchain
requirement on users.
An empty env object is fine โ kdbx derives the artifact paths from the project and
environment name: <keepassxc-dir>/demo/dev.kdbx and <keepassxc-dir>/demo/dev.keyx,
where <keepassxc-dir> is $KEEPASSXC_DIR if set, else %LOCALAPPDATA%\keepassxc on
Windows, else $XDG_CONFIG_HOME/keepassxc or ~/.config/keepassxc. Set vault and
keyFile explicitly if you want them somewhere else; both accept a ${KEEPASSXC_DIR}
token and a leading ~.
2. Create the vault and its key file.
console
$ kdbx init
ACTIVE ENV: dev vault=/home/you/.config/keepassxc/demo/dev.kdbx (source: pointer)
created /home/you/.config/keepassxc/demo/dev.kdbx
KEYFILE: /home/you/.config/keepassxc/demo/dev.keyx โ back this up; losing it makes the vault unrecoverable.
3. Store a secret and map it to an environment variable. The value never appears on
the command line โ it arrives on stdin, from --from-env, or from an interactive prompt.
console
$ kdbx set api/openai --var OPENAI_API_KEY < secret.txt
ACTIVE ENV: dev vault=/home/you/.config/keepassxc/demo/dev.kdbx (source: pointer)
modified tracked file .keepassxc.json โ review and commit
--var records the mapping in the pointer file, preserving existing key order so the diff
stays reviewable:
json
"dev":{"vars":{"OPENAI_API_KEY":"api/openai"}}
4. Run something with the secrets injected.
sh
kdbx run -- claude # the author's actual daily use
kdbx run -- npm test
kdbx --env prod run -- ./deploy.sh
The child inherits your environment plus the mapped variables. Its exit code is passed
straight back out. Nothing is written to disk, and the value never appears in your shell
history.
Reading is deliberately boring:
console
$ kdbx list
api/openai
$ kdbx get api/openai
(set, hidden)
$ kdbx check # every mapping still resolves โ exit 0, no output$ kdbx envs
* dev
prod
Operations
Every operation accepts --env NAME. Read operations additionally accept --json.
Operations marked โฆ print the banner ACTIVE ENV: <env> vault=<path> (source: <src>) to
stderr; pure display operations do not.
Op
Flags
Behavior (stdout / stderr / exit)
init โฆ
--mode standard|strict
create vault + key file; stderr created <vault> plus a KEYFILE backup warning; refuses to overwrite an existing vault or key file; --mode records the env's policy in the pointer, and strict anchors it into the new vault
policy bless โฆ
anchor the pointer's current policy (its policy and run.allow sections) into the vault; interactive-only, like rekey, and denied to agents by the guard; strict run refuses until the anchor matches
set PATH โฆ
--var NAME, --from-env VAR, --raw
value from --from-env, else an interactive prompt with confirmation on a TTY, else stdin (empty โ error; one trailing newline stripped unless --raw); an empty or whitespace-only value is refused; --var adds the mapping to the pointer file
get PATH
--reveal | --clip
default: prints (set, hidden) โ no length or prefix leak; --reveal prints the value with a stderr warning; --clip copies it and auto-clears after ~15 s; missing entry or field โ exit 2
list [GROUP]
sorted group/โฆ/title lines, filtered by the GROUP prefix, Recycle Bin excluded; never prints values
delete PATH โฆ
--purge
soft-deletes to the Recycle Bin by default; --purge prompts y/N (TTY only โ a non-TTY refuses with exit 4) then removes permanently
mv SRC DST โฆ
moves or retitles an entry, creating destination groups; re-points the active environment's var mappings that referenced SRC, keeping any :field suffix; stderr re-pointed N var mapping(s) โฆ
run โฆ
--allow-missing, --no-mask, --any, -- CMDโฆ
if the pointer has a run.allow list, refuses an unlisted command before the vault is even opened (exit 7, NotAllowed) unless --any; resolves the active environment's vars map, injects it into the child's environment, resolves argv[0] through PATH (PATHEXT on Windows), forwards signals, and passes the child's exit code through; when a child stream is captured (not a TTY), injected values โฅ 8 bytes in it become *** (--no-mask disables; the guard denies it for agents); no command โ exit 2; an unresolved var โ exit 5 unless --allow-missing
export โฆ
--out FILE, --allow-missing
renders the mappings as dotenv (always double-quoted; \, " and newlines escaped); --out writes atomically at 0600 with a gitignore reminder, otherwise stdout
import FILE โฆ
parses a dotenv file (no $VAR interpolation), stores each KEY at imported/KEY and registers the mapping; stderr reminds you to delete or rotate the source file
check
prints MISSING VAR -> path per broken mapping; exit 0 when clean, 5 on drift
envs
one line per environment, the active one marked * ; stderr active: <env> (source: <src>); no pointer file โ exit 2
rekey โฆ
prompts y/N (TTY only, else exit 4), mints a new key file, re-keys the vault, replaces the old key file atomically; stderr reminds you to redistribute it
Integration surfaces:
Command
Purpose
kdbx mcp
read-only MCP server over stdio (five tools: kdbx_list, kdbx_envs, kdbx_check, kdbx_get, kdbx_run)
kdbx guard --hook pretooluse
evaluates a PreToolUse hook payload on stdin and denies agent-issued human-only operations
kdbx completion <shell>
emits a completion script for bash, zsh, fish, or powershell
kdbx --version
prints kdbx <version>
--json
--json gives read operations a machine-readable stdout. Secret values are never included.
--json with --reveal is rejected (exit 7). On failure, stdout carries
{"error":{"op":"check","exit":5,"kind":"Drift"}} alongside the usual stderr line and exit
code.
Entry paths
An entry path is group/sub/Title[:field]. The field defaults to password. The reserved
field names โ title, username, password, url, notes, matched case-insensitively โ
map to the KeePass entry's native attributes; anything else becomes a protected custom
property. More than one :, an empty field after :, or an empty / segment is
rejected. Variable names passed to --var must match ^[A-Z_][A-Z0-9_]*$.
Environment selection
--env beats $KDBX_ENV, which beats the pointer's defaultEnv, which defaults to dev.
kdbx envs and the banner report which of the three won. An environment that isn't in the
pointer file is an error (exit 2).
Exit codes
Code
Meaning
0
success
1
generic failure (scrubbed)
2
not found โ no pointer file, unknown environment, missing entry or field, no command given to run
3
locked, key file missing, or credential failure
4
a destructive operation was not confirmed
5
drift โ check found a broken mapping, or run/export could not resolve one
6
the vault changed underneath a write; re-run
7
preflight rejection (e.g. an invalid --var name, or --json --reveal)
Failures print exactly one stderr line and never a stack trace or a secret:
console
$ kdbx get api/nope
kdbx: get failed: NotFound
Set KDBX_DEBUG=1 to additionally get the underlying error and stack on stderr.
kdbx is designed to be safe to hand to a coding agent. The rule is:
Agent-safe:run, get (masked), list, check, envs, init.
Human-only:set, delete, mv, import, rekey, export, and
get --reveal / get --clip.
An agent can use a credential: kdbx run -- npm test works fine, and kdbx itself never
prints the value.
This is a guardrail, not a boundary, and it is worth being precise about why.
The binary does not enforce the split. Possession of the key file is the real boundary:
anything that can read the key file can open the vault, whoever or whatever it is. The role
split is enforced in harnesses that support hooks, by kdbx guard, and it is advisory
everywhere else.
The child command can be pinned, if you choose to. A committed run.allow list in
.keepassxc.json makes run refuse any argv not exactly on the list (a human can pass
--any; the guard denies it for agents). Be clear-eyed about what that buys: the agent can
still edit the pointer in principle, but the guard blocks the obvious edits and the change
is a visible diff on a tracked file instead of an invisible one-liner. Without a list,
run injects into whatever argv it is handed.
For an environment that deserves ceremony (production, real customer credentials), there is
strict mode: kdbx init --mode strict. Strict requires the allowlist, refuses --any
and --no-mask outright, writes an audit line for every decision (command and variable
names, never values, to a 0600 file next to the vault), and gates injection on a policy
hash blessed into the vault with kdbx policy bless โ a human-only, interactive command.
An out-of-band edit to the policy is refused at the next run instead of silently obeyed.
The same rules apply to the MCP server's kdbx_run, which additionally always masks and
has no escape hatches at all. A determined agent with your uid can still defeat all of
this; what strict changes is that quiet tampering becomes loud.
When the output is captured (a pipe, an agent harness, a log), injected values in it are
replaced with *** โ so kdbx run -- env shows masks, not values, exactly where the bytes
were headed for a transcript. A terminal gets raw output, and --no-mask (denied to agents
by the guard) restores it for piped human use. Masking matches exact values only: an agent
that encodes a value on the way out defeats it, as does a test script edited to exfiltrate.
kdbx not printing a secret is a property of kdbx, not of the system it runs in.
What the split actually buys you is that an agent does not stumble into disclosure while
doing something else, and cannot author, rotate or export a credential. It does not contain
an agent that has decided to read one. If you need that, you need a boundary the agent
cannot cross as your user: a separate account, a container, or a broker holding the keys.
See issue #11.
kdbx guard reads a PreToolUse payload on stdin and either prints a deny envelope or
nothing at all. It always exits 0 โ it fails open, so a guard problem can never wedge
your agent.
console
$ echo'{"tool_input":{"command":"kdbx set api/openai"}}' | kdbx guard --hook pretooluse
{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"deny","permissionDecisionReason":"kdbx role-guard: 'set' is a human-only operation โฆ"}}
$ echo'{"tool_input":{"command":"kdbx run -- npm test"}}' | kdbx guard --hook pretooluse$ echo $?
0
It blocks two things: agent-issued human-only operations, and non-kdbx programs reaching
for *.kdbx / *.keyx files or the KeePassXC config directory (so cat ~/.config/keepassxc/โฆ
is denied too). It recognizes kdbx, keepassxc-cli and keepassxc invocations as
legitimate.
kdbx mcp applies the same contract to MCP clients: five tools, all read-only. There is no
write tool, deliberately.
Agent and editor integration
MCP server โ add to .mcp.json (Claude Code) or your client's equivalent:
The kdbx plugin in yarrasys/extensions bundles
both, along with the skill documentation an agent loads to learn the contract. That repository
is archived and read-only as of 2026-07-30 โ the plugin still works, but it receives no
updates, issues or PRs. The snippets above are the whole integration; you do not need the
plugin to wire kdbx guard or kdbx mcp into an agent.
Security
The key file is the only secret. There is no master password. Anyone who can read
<env>.keyx can open <env>.kdbx. Keep them apart from your repo โ the default location
(~/.config/keepassxc/<project>/) is deliberately outside it.
Back the key file up, out of band. Losing it makes the vault unrecoverable. There is
no recovery path, by design.
Watch out for cloud sync. A vault or key file under OneDrive, Dropbox, iCloud Drive
or similar is replicated to a third party and to every device on the account. kdbx init
warns when it detects this, but does not refuse.
Vault, key file and exported dotenv files are written 0600 (owner-only ACL on
Windows), atomically, and vault saves are crash-safe (temp file โ rename, with the
previous vault kept as .bak until the rename lands).
Secret values never reach argv, logs, JSON output, or error text. Intake is stdin,
--from-env, or an interactive prompt only.
Accepted limitation: secret strings are not zeroized in memory (same as the Python
implementation). A core dump or a sufficiently privileged local process can recover them.
Vulnerabilities: see SECURITY.md. Please do not open a public issue.
Origin
kdbx began as a Python skill in
yarrasys/extensions, a
repository now archived. This binary is the canonical kdbx and the Python skill is retired; the
design spec that governs compatibility lives here, in
docs/kdbx-go-standalone-design.md. Vaults are standard KDBX4
(Argon2, key-file-only), so any vault kdbx writes opens directly in keepassxc-cli and the
KeePassXC desktop app; .keepassxc.json pointers and KeePass XML v2 key files are the
ordinary formats those tools already use.
A few behaviors were chosen deliberately when porting from the original Python skill:
Area
Behavior
Why
install-launcher
removed
the binary is its own launcher; there is nothing left to install
Failure to open a vault
exit 3
3 is the documented contract for a locked/credential failure (the Python skill sometimes returned 1)
Malformed .env on import (unterminated quote)
exit 7
silently losing a credential during an import is worse than failing loudly
Child killed by a signal under run
-1 โ 255
Go collapses every signal death to -1; this doesn't match the shell's 128+N, so no portable caller depends on it. Normal exit codes pass through identically
Bugs & feedback
Found a bug or have a feature idea? Please open an
issue. Include kdbx --version, your
platform, and redacted reproduction steps โ never paste a real secret, vault path, or key
file; a description of the shape of the problem is enough.
Security vulnerabilities are the one exception: report them privately through GitHub Security
Advisories (see SECURITY.md), not as a public issue.
Contributing
Start with CONTRIBUTING.md for setup and the build/test loop.
AGENTS.md (symlinked as CLAUDE.md) carries the repository's rules โ the engine boundary,
the secret-hygiene invariants, and the test discipline. Read it before opening a PR. CI runs
the suite on Linux, macOS and Windows plus go vet, gofmt and golangci-lint.
MIT โ see LICENSE. Dependency licenses are inventoried in NOTICE; the
dependency tree is MIT / BSD / Apache-2.0 throughout, with no copyleft component.
Install
Configuration
Environment variables
KEEPASSXC_DIRdefault /kpx
Where kdbx looks for vaults inside the container. Must match the mount target above.
KDBX_ENV
Environment to select, overriding the pointer's defaultEnv. Optional.