DevVault
FreeNot checkedA local-first secrets vault for MCP clients that lets AI assistants use secrets by injecting them into child processes, without the plaintext ever entering the
About
A local-first secrets vault for MCP clients that lets AI assistants use secrets by injecting them into child processes, without the plaintext ever entering the model's context.
README
Your AI can use your secrets. It can never read them.
DevVault is a local-first secrets vault that any MCP-aware client (Claude Desktop, Claude Code, Cursor, VS Code) can talk to. The AI assistant can store, list, rotate, and operate your secrets — but the plaintext values never enter the model's context, so a prompt-injection attack has nothing to steal.
The problem
AI agents now touch real infrastructure — they deploy, call APIs, run migrations. That means they need credentials. Today you have three bad options:
- Paste the key into chat — it's now in a transcript, a log, maybe a training set.
- Leave it in
.env— plaintext on disk, onegit add .away from a public repo. - Use an existing MCP vault — better, but they expose a
getSecrettool that drops the plaintext into the model's context. The OWASP MCP Top 10 lists prompt injection as the #1 threat: a hidden instruction in a web page or README that the agent obeys. If the agent can read the secret, an injection can make it leak the secret.
DevVault removes the agent's ability to read the secret in the first place.
Analogy: a hotel safe where the bellhop (the AI) can carry the locked box to your room and use what's inside on your behalf — but can never open it. The combination stays with you.
How it works
MCP Client (Claude, Cursor)
│ sees: names, metadata, exit codes, REDACTED output
│ never sees: plaintext secret values
▼
DevVault MCP Server ──► Crypto core (AES-256-GCM, one IV per secret)
│ │ master key
▼ ▼
Child process ◄── secrets OS keychain (or passphrase fallback)
(npm deploy, injected as
curl, etc.) env vars
The one line that is the whole product: plaintext flows from the crypto core into the child process's environment, and never travels back up to the AI.
The tools
| Tool | Can the AI see the value? | Notes |
|---|---|---|
storeSecret |
No (write-only) | Confirms by name; value never echoed. |
listSecrets |
No (metadata only) | Names, project, timestamps. |
rotateSecret |
No (write-only) | Replaces a value in place. |
deleteSecret |
No | Soft-delete (recoverable). |
runWithSecrets |
No — injected into child env | Returns exit code + redacted stdout/stderr. This is the headline feature. |
getSecret |
Yes — escape hatch | Off by default. Only registers if you set allowPlaintextReads: true. Audited. |
Every call is recorded in a hash-chained, tamper-evident audit log (names + outcomes — never values).
Install
npx devvault-mcp
Connect to Claude Desktop
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"devvault": {
"command": "npx",
"args": ["-y", "devvault-mcp"]
}
}
}
Restart Claude Desktop. The DevVault tools will appear. Try: "Store my Stripe test key as STRIPE_KEY, then list my secrets."
Master key
On macOS / Windows / Linux with a desktop keychain, DevVault stores its master key there automatically. In headless environments (CI, containers) set a passphrase instead:
export DEVVAULT_PASSPHRASE="a-long-random-passphrase"
Security model (the short version)
- The model is an untrusted operator. Every tool assumes the AI's context may be hijacked at any moment.
- Plaintext has exactly one exit, and it isn't the model — the environment of a child process you asked to run.
- Tools are risk-tiered. Safe tools never return values.
getSecretis off by default.deleteSecretis soft + recoverable. - Every access is on the record — hash-chained audit log; alter one entry and the chain visibly breaks.
- Fail closed. Wrong key, tampered data, unknown secret, corrupt vault → error, never a partial or plaintext fallback.
Note on concurrency: writes are serialized with an in-process lock so parallel calls can't clobber the vault file. DevVault does not impose ordering between two independent concurrent tool calls — an MCP client should await each tool's result before issuing the next (which is how the model behaves normally).
Crypto disclaimer: the encryption uses only Node's built-in
crypto(no hand-rolled primitives), but this code has not yet had an independent security review. Do not rely on it for high-value production secrets until that review is done (see the launch brief).
Configuration
| Env var | Purpose | Default |
|---|---|---|
DEVVAULT_PATH |
Vault file location | ~/.devvault/vault.enc |
DEVVAULT_PASSPHRASE |
Master key fallback when no OS keychain | (none — keychain used) |
DEVVAULT_AUDIT |
Audit log location | ~/.devvault/audit.log |
DEVVAULT_CONFIG |
Config file location | ~/.devvault/config.json |
To enable the getSecret escape hatch, create ~/.devvault/config.json:
{ "allowPlaintextReads": true }
Development
npm install
npm test # 19 tests incl. tamper, wrong-key, redaction, no-leak, concurrency
npm run build
License
Apache-2.0. The free local vault is open source — that's the distribution engine, not lost revenue. Paid collaboration (encrypted team sync, audit export, policy) is the roadmap.
Installing DevVault
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/ConjureGanja/devvault-mcpFAQ
Is DevVault MCP free?
Yes, DevVault MCP is free — one-click install via Unyly at no cost.
Does DevVault need an API key?
No, DevVault runs without API keys or environment variables.
Is DevVault hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install DevVault in Claude Desktop, Claude Code or Cursor?
Open DevVault on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare DevVault with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
