simple-secret-storage
MCP server for end-to-end encrypted secret storage and retrieval, enabling LLM agents to fetch secrets by name via one-time URLs while keeping plaintext out of model context and logs.
README
SSS — Simple Secret Storage (MCP)
End-to-end encrypted secret delivery for LLM agents.
The agent asks for a secret by name. The server returns a one-time URL to an age-encrypted blob (X25519). Only the agent's private key can decrypt it. The server never sees the plaintext in the wire response.
Why
When an LLM agent needs a password / API key / token, the worst thing is to have the secret appear in the MCP tool response — it ends up in the model context, the chat history, and any logs that record tool outputs.
SSS solves this by:
- Server stores the secret encrypted (AES-256-GCM, master key in
~/.sss/key, mode 0600). - Agent registers an age (X25519) public key via MCP
register_agent. get_secret(name, agent_id)returns a one-time fetch URL. The fetch responds with armored age ciphertext for that agent's public key.- Agent decrypts locally with its private key and pipes the plaintext into the target command. Plaintext exists only in the command's stdin.
The server never has the agent's private key, so even if the server is compromised, the attacker only gets ciphertext they can't decrypt.
If the agent doesn't register (no agent_id parameter), get_secret
falls back to base64 for convenience — but the server does see the
plaintext at fetch time. Use agent_id for any non-trivial secret.
Quick start
1. Server: build, install, systemd
cd ~/agents-projects/simple-secret-storage
npm ci # installs production deps
npm run build # dev deps included for tsc
sudo install -m 0644 systemd/sss.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now sss
Generate a strong bearer token once:
echo "SSS_API_KEY=$(openssl rand -hex 32)" \
> ~/.config/sss-mcp/api-key.env
chmod 600 ~/.config/sss-mcp/api-key.env
The systemd unit reads this file via EnvironmentFile=.
2. nginx: terminate TLS, proxy to SSS
nginx/pswd.bezrabotnyi.com.conf ships in the repo. Adapt paths and
hostnames; symlink into sites-enabled, then:
sudo certbot certonly --nginx -d pswd.bezrabotnyi.com \
--non-interactive --agree-tos --register-unsafely-without-email
sudo nginx -t && sudo systemctl reload nginx
The config has access_log off for /i/, /submit/, and /d/
locations — the URLs themselves are the credentials.
3. CLI wrappers for agents
Two scripts ship in bin/. Pick based on the threat model:
| Script | Plaintext appears in… | When to use |
|---|---|---|
sss-get |
our stdout (then into pipe) |
interactive use, sss-get <name> | xxd, scripts you own |
sss-run |
only the consumer's stdin |
handing a secret to an external command you don't trust with your stdout/argv/env |
Install both:
ln -sf "$(pwd)/bin/sss-get.mjs" ~/.local/bin/sss-get
ln -sf "$(pwd)/bin/sss-run.mjs" ~/.local/bin/sss-run
sss-get <name> — fetch + print to our stdout
sss-get yandex_password # → plaintext on stdout
sss-get yandex_password | <your-command>
First run creates ~/.config/sss-mcp/agent-identity.json (mode 0600)
with a fresh X25519 identity and registers the public key with the
server. Subsequent runs reuse it.
sss-run <name> -- <consumer> [args...] — pipe straight to a child
sss-run yandex_password -- curl -u : https://passport.yandex.ru/
sss-run api_token -- ssh -i ~/.ssh/id_ed25519 user@host 'echo ok'
The decrypted value is fed only to the consumer's stdin. It never
appears in our process's stdout, argv, or environment, and there is no
intermediate file on disk. The CLI itself enforces the -- separator
so there's no chance of accidentally treating the consumer as an
option.
- generate the agent identity if missing,
- call MCP
register_agent, - call MCP
get_secret(name, agent_id), - fetch
/d/<token>and decrypt the age ciphertext locally, - write plaintext to stdout.
4. Codex CLI
Already done in ~/.codex/config.toml:
[mcp_servers.sss]
url = "https://pswd.bezrabotnyi.com/mcp"
bearer_token_env_var = "SSS_API_KEY"
SSS_API_KEY is loaded by ~/.profile from ~/.config/sss-mcp/api-key.env.
Restart Codex (codex in a new login shell). The agent will see four MCP
tools: get_secret, list_secrets, delete_secret, register_agent.
For tool calls, pass agent_id to get_secret to get true E2E.
5. Claude Code / Cursor / other MCP clients
claude mcp add sss --transport http \
--url https://pswd.bezrabotnyi.com/mcp \
--header "Authorization: Bearer ***"
How agents get the API key
The server's bearer token lives in ~/.config/sss-mcp/api-key.env on
the server host as SSS_API_KEY=... (mode 0600, owned by the user
running the systemd service). External agents need a copy of that
token to talk to the server.
There is no self-service token endpoint, no signup form, no anonymous token mint — by design. Anyone with the token can list / read / save / delete every secret in the store, so handing one out is a deliberate act, not a one-click side effect of hitting a URL.
Hand a token to one specific host
Copy the value yourself, out-of-band:
# on the server
cat ~/.config/sss-mcp/api-key.env
# # Generated by simple-secret-storage install.sh on 2026-08-02T01:59:30Z
# SSS_API_KEY=0b93b02d70af6e072d05356722ba7d7d2715ea12d438938a936bfbb44932e149
# on the client (over ssh, password manager, whatever you trust)
mkdir -p ~/.config/sss-mcp
umask 077
echo 'SSS_API_KEY=0b93b02d...' > ~/.config/sss-mcp/api-key.env
chmod 600 ~/.config/sss-mcp/api-key.env
# `sss-get`/`sss-run` read it automatically; the systemd unit on
# the server reads the same path on the server host.
Add it to your login shell so MCP clients and CLIs see it:
# in ~/.profile or ~/.bashrc
if [ -z "${SSS_API_KEY:-}" ] && [ -f "$HOME/.config/sss-mcp/api-key.env" ]; then
set -a; . "$HOME/.config/sss-mcp/api-key.env"; set +a
fi
Rotate the token
The install script regenerates the token every time it runs. To rotate manually on the server:
NEW=$(openssl rand -hex 32)
umask 077
printf 'SSS_API_KEY=%s\n' "$NEW" > ~/.config/sss-mcp/api-key.env
chmod 600 ~/.config/sss-mcp/api-key.env
sudo systemctl restart sss.service # picks up the new value
Existing agents get HTTP 401 until you re-distribute the new value. There is no grace period or overlap window — if you need zero-downtime rotation, set up two servers and migrate agents one at a time.
Audit and accounting
The ~/.sss/agents.json registry already gives per-agent attribution
for the age-encrypted path (every successful get_secret(name, agent_id)
binds the request to a known public key). The bearer token itself
does not log per-token — if you want per-token audit, log req.headers.authorization
hashed at the MCP handler level. That's a five-line patch.
MCP tools
| Tool | Parameters | What it returns |
|---|---|---|
register_agent |
agent_id, public_key (age1...), label? |
Confirmation. Persists the public key in ~/.sss/agents.json. |
get_secret |
name, agent_id? |
If pending → returns /i/<token> URL for the user to submit the value. If ready → returns /d/<token> URL (age if agent_id, else base64) with pipe-usage hint. |
list_secrets |
— | Names + metadata (no values). |
delete_secret |
name |
Confirmation. |
Web UI for the user
The user opens the link from get_secret's not_found /
pending_user_input response. URL pattern:
https://pswd.bezrabotnyi.com/i/<token>
A simple password input form. POST goes to /submit/<token>, value is
encrypted and stored. The link works once and expires.
Architecture
User ─browser─→ nginx (pswd.bezrabotnyi.com, TLS, access_log off for /i/, /d/, /submit/)
└─127.0.0.1:8743─→ SSS (systemd, single Node process)
├─ /api/secrets (Bearer, list/save/delete)
├─ /i/<token> (anonymous form)
├─ /submit/<token>(anonymous POST)
├─ /d/<token> (one-time, age-cipher OR base64)
└─ /mcp (Streamable HTTP, Bearer)
↕ JSON-RPC
LLM Agent ─MCP──→ same SSS ─MCP─→ register_agent, get_secret, list_secrets, delete_secret
LLM Agent ─CLI──→ sss-get / sss-run ──→ same flows; decrypts locally with age identity
Files:
~/agents-projects/simple-secret-storage/
├── src/
│ ├── server.ts # Express app + MCP tools + /i/, /submit/, /d/, /api/
│ ├── storage.ts # ~/.sss/{key, secrets.json, blobs/, agents.json}
│ └── crypto.ts # AES-256-GCM (storage) + age-encryption (wire)
├── bin/sss-install.mjs # npx entrypoint → bash install.sh
├── bin/sss-get.mjs # CLI: fetch and print to stdout
├── bin/sss-run.mjs # CLI: pipe directly to a child process's stdin
├── systemd/sss.service # Single-process systemd unit
├── nginx/pswd.bezrabotnyi.com.conf
└── dist/ # tsc output
Threat model
Protected
- Plaintext in MCP response / logs — server returns URL + ciphertext only.
- Plaintext on disk — AES-256-GCM, master key at
~/.sss/key(0600). - Plaintext in nginx access logs —
/i/,/submit/,/d/haveaccess_log off. - Server compromise with
agent_idmode — attacker gets ciphertexts only, no agent private keys. - Network MITM — TLS via Let's Encrypt; the nginx config uses the same
ssl_certificate_*files as other*.bezrabotnyi.comsites.
NOT protected
- Plaintext at the command-STDIN destination. If the receiving command
writes its stdin to a file or logs it, the secret ends up there.
sss-run <name> -- <cmd>keeps the secret in the kernel pipe buffer only — there is no intermediate file, no stdout copy in the parent process, and the consumer's argv/env never see it. There is no way around this in principle — the secret has to reach the command somehow. - Plaintext in argv — don't
cat /d/... | age --decrypt | xargs cmd $secret. Use stdin redirection or--password-file. - Master key theft —
~/.sss/keyis0600but unencrypted. If an attacker reads it, they can decrypt all stored blobs. - Compromise of the user's browser at the
/i/<token>URL — the one-time token has 256 bits of entropy; capture-and-replay within the 5-minute window can submit an attacker-chosen value. - Loss of agent identity —
~/.config/sss-mcp/agent-identity.jsonis the only thing that lets the agent decrypt. Back it up encrypted or treat it as a one-shot device credential.
Files created at runtime
~/.sss/key 32-byte AES key (mode 0600)
~/.sss/secrets.json { name: { sha256, created, pending?, ... } } (mode 0600)
~/.sss/blobs/<name>.enc AES-encrypted secret blob (mode 0600)
~/.sss/agents.json { agent_id: { publicKey, ... } } (mode 0600)
~/.config/sss-mcp/api-key.env SSS_API_KEY=... (mode 0600)
~/.config/sss-mcp/agent-identity.json age identity (mode 0600)
Operational notes
npm run buildrequirestypescriptand@types/*(dev deps). On the production server, runnpm ci(full install) beforenpm run build, notnpm ci --omit=dev.- The systemd unit must use
/usr/local/bin/node(v22+)./usr/bin/nodeon this host is v12 and will fail to parse??and other ES2020+ syntax. - The agent identity is per-machine. If you move Codex to a new host,
delete
~/.config/sss-mcp/agent-identity.jsonand let it regenerate; the new public key will register automatically on the nextsss-getorsss-runcall. - The HTTP fetch URL (
/d/<token>) is single-use (token deleted on first GET) and expires after 5 minutes. There is no refresh — if you missed it, callget_secretagain to get a new URL.
Manual lifecycle
sudo systemctl status sss # running?
sudo systemctl restart sss # after code changes
sudo journalctl -u sss -f # live logs
sudo systemctl disable --now sss # shut down
Build for a fresh host
git clone <repo> ~/agents-projects/simple-secret-storage
cd ~/agents-projects/simple-secret-storage
npm ci
npm run build
sudo install -m 0644 systemd/sss.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now sss
ln -sf "$(pwd)/bin/sss-get.mjs" ~/.local/bin/sss-get
ln -sf "$(pwd)/bin/sss-run.mjs" ~/.local/bin/sss-run
Generate a fresh API key on the new host:
echo "SSS_API_KEY=$(openssl rand -hex 32)" > ~/.config/sss-mcp/api-key.env
chmod 600 ~/.config/sss-mcp/api-key.env
sudo systemctl restart sss
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.