psamvault-mcp
Allows AI agents to make authenticated API requests to GitHub or perform browser login to github.com using stored credentials, without exposing the credentials to the agent.
Allows AI agents to perform browser login to kaggle.com using stored credentials, without exposing the credentials to the agent.
Allows AI agents to make authenticated API requests to OpenAI using stored credentials (bearer token), without exposing the credentials to the agent.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@psamvault-mcplog me into kaggle.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
psamvault-mcp
v0.4.4 — MCP server for psamvault.
Lets AI agents use your stored credentials without ever seeing their plaintext values. Also integrates with pv-dotenv for runtime credential resolution in your .env files.
Agents installing or repairing this MCP: read docs/troubleshooting/MCP-INSTALL-AND-CONNECT.md before debugging. Common failures are PATH shadowing, corrupt pipx installs, missing absolute paths in client config, expired vault sessions, and mid-session MCP not reloading until restart.
Features
Tools are grouped into three categories. Always start in Entry & Orientation.
🛠 Entry & Orientation
Discover what tools are available and verify the server is running.
Tool | What it does |
| Discovery tool — call this first to find the right tool for your task |
| Get the installed server version |
🔐 Site Authentication
End-to-end: discover, check, and log into websites.
Tool | What it does |
| List all stored credential sites (names and username hints only) |
| Check if a credential exists for a site |
| Get stored username (never the password) |
| Opens Chromium, navigates to any site, fills credentials directly in the browser — agent never sees them |
🔑 API Key Operations
All tools that deal with API keys — discover, use, inject, and protect.
Tool | What it does |
| Lists all stored API key names with service hints and project grouping — never returns key values |
| Makes authenticated HTTP requests for you (API keys, bearer tokens, basic auth) — only the HTTP response is returned |
| Runs a CLI command with a credential injected via environment variable or stdin — all output redacted of the secret value |
| Scans a project directory for |
| Exports a vault API key directly into a client MCP config file (Hermes, Claude, etc.) — auto-verifies HTTP keys before writing |
| Exports a vault API key into an agent's |
| Verifies a stored API key is valid against its provider's API — returns status, provider, and verification result |
New in v0.4.6:
export_key_to_mcp_config,verify_api_key, and the auto-verifying export gate (verified-before-write for HTTP keys).
Breaking in v0.5.0:
capture_stripe_credentialswas REMOVED (the Stripe Projects capture flow is gone). Usescan_and_protectfor project.envsecrets.New in v0.5.0:
export_key_to_env_file— put a vault key into an agent.envas an environment variable (defaultHERMES_HOME/.env, explicitenv_pathfor other hosts), updating in place with a timestamped backup.New in v0.4.0:
use_credential,run_with_credential,scan_and_protect,list_api_keys, single-process browser architecture (no fragile subprocess daemon), auto-restart on crash.
Related MCP server: Janee
How it works
Browser login flow (browser_login)
When an AI agent needs to log you into a website, psamvault opens a real Chromium browser, navigates to the site, and fills in the credentials directly inside that browser process.
The agent never sees the credentials. It only sees whether the login succeeded.
Agent: "Log me into kaggle.com"
↓
psamvault opens Chromium → navigates to kaggle.com → finds the login page
↓
psamvault decrypts credential locally
↓
psamvault fills username + password fields directly in the browser
↓
If a CAPTCHA appears, psamvault takes a screenshot, pauses automation,
and tells you to solve the CAPTCHA and click Sign in manually
↓
Agent receives:
{
"success": true,
"message": "Logged in to github.com successfully.",
"steps_count": 8,
"url": "https://github.com/dashboard",
"captcha_detected": false
}
↓
Browser stays open — you take over from there.
The browser session is saved and reused on subsequent calls to the same site.API credential flow (use_credential)
When an AI agent needs to make an authenticated API call on your behalf:
Agent: "Get my top 10 starred repos"
↓
use_credential("github.com", target_url="api.github.com/users/psam-717/starred")
↓
psamvault decrypts the API key locally, makes the HTTP request,
returns only the response — the credential is NEVER in the agent's contextSupports three injection modes:
Bearer token —
Authorization: Bearer ***API key header —
<custom-header>: <key>Basic auth —
Authorization: Basic base64(user:pass)
The fields parameter lets you return only the response keys you need, reducing token usage.
CLI command flow (run_with_credential)
When an agent needs to run a CLI tool that requires a credential (upload to PyPI, push to a private git repo, log into Docker, publish an npm package):
Agent: "Upload my package to PyPI"
↓
run_with_credential("pypi", "twine upload dist/*",
inject_as="env", env_var_name="TWINE_PASSWORD")
↓
psamvault decrypts the credential locally, spawns the subprocess
with the credential injected as an env var (or piped via stdin)
↓
All stdout and stderr is scanned for the credential value
and redacted before being returned
↓
Agent receives only the redacted output — the credential NEVER
appears in the agent's contextSupports two injection modes:
env(default) — credential set as an environment variable (e.g.TWINE_PASSWORD,GITHUB_TOKEN,NPM_TOKEN). WhenTWINE_PASSWORDis used,TWINE_USERNAME=__token__is set automatically.stdin— credential piped via stdin (e.g. fordocker login).
Use cases include: twine upload, git push, docker login, npm publish, pip install (private repos), and any CLI tool that needs an API key or password.
Protecting your .env files (scan_and_protect)
Agent: "Protect the secrets in my project"
↓
scan_and_protect scans the project directory for .env files
↓
Detects API keys, passwords, tokens (pattern matching)
↓
Encrypts each secret into the psamvault vault
↓
Replaces plaintext with "psamvault:KEY_NAME" placeholders
↓
Your app resolves them at runtime with pv-dotenvSecrets can be stored under a project namespace by passing project_name:
Keys stored as
project_name/.env/KEY_NAMEfor clean per-project organisationWhen omitted, keys are stored as
env/.env/KEY_NAME(backwards-compatible)Use
list_api_keys(project_name="myproject")to view only that project's keys
After protecting, pair with pv-dotenv — a drop-in replacement for python-dotenv that resolves psamvault: placeholders at runtime. No code changes needed beyond the import:
# Before:
from dotenv import load_dotenv
# After:
from pv_dotenv import load_dotenvPrerequisites
Python ≥ 3.11
psamvault installed and logged in
pipx install psamvault
psamvault configure
psamvault loginPlaywright Chromium browser
playwright install chromiumInstallation
Prefer pipx (isolated venv). Avoid pip install into system Python — on
Windows this often leaves a broken shim on PATH that shadows the good install.
pipx install psamvault-mcp
psamvault-mcp --version # safe smoke test (prints and exits)
psamvault-mcp --help # same — usage text, then exitAfter install — resolve the real binary
If where psamvault-mcp / which -a psamvault-mcp shows more than one
path, configure your MCP client with the absolute path under your user
local bin (pipx), not the system Python3xx\Scripts copy:
OS | Typical pipx path |
Windows |
|
Linux / macOS |
|
Hardened client config (recommended)
Always pass an absolute command and clear PYTHONPATH so other tools
(e.g. Hermes) cannot contaminate imports:
{
"mcpServers": {
"psamvault": {
"command": "C:\\Users\\YOU\\.local\\bin\\psamvault-mcp.exe",
"args": [],
"env": { "PYTHONPATH": "" }
}
}
}Grok Build (~/.grok/config.toml):
[mcp_servers.psamvault]
command = "C:\\Users\\YOU\\.local\\bin\\psamvault-mcp.exe"
args = []
enabled = true
tool_timeout_sec = 300
[mcp_servers.psamvault.env]
PYTHONPATH = ""Then restart the agent session (or refresh MCP). Config edits do not always
reload tools mid-chat. Verify with get_version, then list_vault_sites.
Full agent playbook (corrupt pipx, PATH shadowing, session timeout, reload): docs/troubleshooting/MCP-INSTALL-AND-CONNECT.md.
Transport modes
psamvault-mcp primarily uses stdio transport (the MCP standard for desktop agents). HTTP/SSE transport is also available as an option.
stdio (default — for Hermes, Goose, Claude Desktop, Cline, Grok Build)
psamvault-mcpStarts the MCP server over stdin/stdout. This is the default mode and works with all major MCP desktop clients.
Note for agents: a bare
psamvault-mcpinvocation waits on stdin for the MCP protocol. That is not a hang — use--version/--helpfor smoke tests, and let the host spawn the process for real use.
HTTP/SSE (for custom clients, remote setups, or network-accessible deployments)
psamvault-mcp --http --port 8433Starts an HTTP server with Server-Sent Events (SSE) transport.
Option | Default | Description |
| off | Enable HTTP/SSE transport |
|
| HTTP server port |
|
| HTTP server bind address |
Goose setup
Option A — One-click deeplink
Click or paste this URL into your browser while Goose Desktop is running:
goose://extension?cmd=psamvault-mcp&timeout=300&id=psamvault&name=psamVault&description=Use%20stored%20credentials%20without%20exposing%20them%20to%20the%20agentGoose will prompt you to confirm, then the extension is added instantly.
Option B — Goose Desktop UI
Open Goose Desktop.
Click the sidebar button (top-left) → Extensions.
Click Add custom extension.
Fill in the form:
Field
Value
Type
Standard IOID
psamvaultName
psamVaultDescription
Use stored credentials without exposing them to the agentCommand
psamvault-mcpTimeout
300Click Add.
The extension appears in your Extensions list — toggle it on to activate it.
Option C — Config file (advanced)
Edit ~/.config/goose/config.yaml and add the following under extensions::
extensions:
psamvault:
name: psamVault
cmd: psamvault-mcp
args: []
enabled: true
type: stdio
timeout: 300Save the file and restart Goose (or reload the session).
Verifying the extension works
Once added, start a Goose session and try:
What credentials do I have stored in my vault?Goose will call list_vault_sites via psamvault-mcp. If you see your stored sites, everything is working.
Hermes setup
Connect to psamvault-mcp via stdio transport (default). Add this block to
~/.hermes/config.yaml under mcp_servers:
mcp_servers:
psamvault:
command: psamvault-mcp
enabled: trueIf you need HTTP/SSE transport instead (e.g. for remote access), start the server with --http and point Hermes at the SSE endpoint:
mcp_servers:
psamvault:
url: "http://127.0.0.1:8433/sse"
enabled: truepsamvault-mcp --http --port 8433Restart or reload Hermes — the tools will be discovered automatically.
Claude Desktop setup
Config file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\\Claude\\claude_desktop_config.json
{
"mcpServers": {
"psamvault": {
"command": "psamvault-mcp"
}
}
}Restart Claude Desktop after saving.
Grok Build setup
Install with pipx (see Installation).
Add the server to
~/.grok/config.tomlusing the absolute pipx path (example above), or to~/.mcp.jsonif you already use that file.Restart Grok or open
/mcpsand refresh so tools load into the session.Confirm:
grok mcp doctor psamvault→ handshake OK, tools discovered.Ensure the vault CLI session is active:
psamvault login.
Other MCP clients
Any MCP client supporting stdio transport can use psamvault-mcp. Prefer the absolute pipx path over a bare command name:
{
"mcpServers": {
"psamvault": {
"command": "/home/YOU/.local/bin/psamvault-mcp",
"env": { "PYTHONPATH": "" }
}
}
}For HTTP/SSE support, point the client at http://127.0.0.1:8433/sse.
Troubleshooting
Symptom | Guide |
MCP will not start / agent cannot connect | |
| |
Index of all troubleshooting docs |
Quick recovery for a broken Windows pipx install:
pipx uninstall psamvault-mcp
Remove-Item -Recurse -Force "$env:USERPROFILE\pipx\venvs\psamvault-mcp" -ErrorAction SilentlyContinue
pipx install psamvault-mcp
# Point MCP config at: $env:USERPROFILE\.local\bin\psamvault-mcp.exeConfiguration
psamvault-mcp reads its backend URL from ~/.psamvault/config.env, written
automatically by psamvault configure.
Variable | Default | Description |
|
| psamvault backend endpoint |
|
| Log verbosity. Accepts any standard Python level: |
To point at a self-hosted backend, set the variable in ~/.psamvault/config.env:
PSAMVAULT_API_URL=https://your-backend.example.comAvailable tools
Tools are grouped by purpose so AI agents can find the right tool faster:
🛠 Entry & Orientation
Always start here to discover what tool to use.
Tool | Description |
| Discovery tool — call this first to find the right tool for your task |
| Return the installed psamvault-mcp version |
🔐 Site Authentication
End-to-end: discover, check, and log into websites.
Tool | Description |
| List stored site names with username hints (no passwords). Call before |
| Check if a credential exists for a site. Returns username hint |
| Get the username only (not password) for a site |
| Open a real browser and log into a website — credentials filled silently, never shown to the agent |
🔑 API Key Operations
All tools that deal with API keys — discover, use, inject, and protect.
Tool | Description |
| List stored API key names with service hints and project grouping (never key values). Optional |
| Make authenticated HTTP requests using stored API keys or site passwords — only the HTTP response is returned |
| Run a CLI command with a credential injected via env var or stdin — all output redacted of the secret |
| Scan a project for |
| Export a vault API key into a client MCP config file (Hermes, Claude, etc.) — auto-verifies HTTP keys before write, with |
| Export a vault API key into an agent |
| Verify a stored API key is valid against its provider's API. Returns |
Key verification is mandatory before an export write. HTTP keys are probed against the provider's read-only endpoint, and a failed probe blocks the write —
skip_verify=truecannot override it (it covers only providers that cannot be probed at all, and the result then recordsverification: skipped). Invalid keys never reach a config or.env.
Changelog and unreleased tracking
Two files, one rule: nothing merged to main should have to be rediscovered at release time.
File | Holds | Who writes it |
merges that are on | whoever merges the change (usually via a follow-up PR) | |
released history, newest first | rolled over at release time from the unreleased file |
At release time the unreleased entries are used twice: pasted into the GitHub release notes and
prepended to CHANGELOG.md under the new version heading; the unreleased file is then reset to its
header. scripts/docs-sync-check.py fails the release when CHANGELOG.md's newest section is not the
release the contract calls newest, so a release that forgets the roll-over cannot ship quietly.
Version lockstep (MCP ↔ skill)
The server and its usage skill are a pinned pair, and
the pairing ships inside the wheel as mcp_server/compatibility.json (each MCP release → the skill
version that documents it, plus the expected tool fingerprint).
psamvault-compat --check # exit 0 in sync, 1 drift, 2 refused (breaking), 3 install failed / below-floor skill
psamvault-compat --check --json # machine-readable
psamvault-compat --apply # install the target release and bring the skill up to date
psamvault-compat --apply --allow-breaking # only after approving a release that REMOVES a tool
psamvault-compat --sync-skill # skill-only update: install the clone's newest skill, MCP untouched
psamvault-compat --apply --from-git # install the local repo (merged but not yet released)
psamvault-compat --apply --from-git --pull # ...after stashing local changes and pulling origin/mainThe recorded skill version is a floor, not a pin. Each release says the minimum skill version that documents it, and any skill at or above that floor is healthy:
State | Meaning |
skill ≥ floor | ✅ fine — the skill may legitimately move ahead of the MCP |
skill < floor | drift — the skill is older than the server it documents; |
skill missing | drift (same remedy) |
That is what makes a skill-only update possible: improving the description of an existing tool is a skill change with no MCP release behind it. Edit the skill in the clone, then:
psamvault-compat --sync-skill # installs the clone's working-tree skill, if it meets the floor--sync-skill reads the clone as-is (mirrors --from-git: uncommitted skill work is installable),
snapshots the current skill first, and applies two guards so the skill can never move backwards
silently:
Guard | Behaviour |
floor | refuses when the clone's skill is below the floor the installed server requires — and writes nothing |
no downgrade | refuses when the clone's skill is older than the skill already installed (a clone parked on an older branch holds an older skill); the message names the clone, its branch and both versions. |
--check also reports skill_source / skill_source_stale — when the clone is behind the installed
skill it says so, because a silent downgrade opportunity is exactly what nobody notices.
A contract entry exists the moment a release is merged, before it ships. The index pre-check is
deliberately advisory: PyPI's JSON API lags an upload (CDN cache), so it never blocks an install
that would succeed — it only explains a real failure (exit 3). Use --from-git for the
merged-but-unreleased case.
Upgrade safety (--apply)
Same model as the psamvault CLI's upgrade path: local work is never lost, and a failed upgrade is never left installed.
Step | What it does |
Snapshot | copies the installed skill aside ( |
| stashes uncommitted work (untracked included), |
Repo report |
|
Smoke test | imports the freshly installed server in a fresh interpreter from a neutral cwd — so the repo tree cannot masquerade as the install — and reports its version + tool count |
Rollback | if the install fails or the smoke test fails, the previously installed release is put back automatically |
The installed server wins — the skill is pulled to match it, never the reverse, and never rolled back: an older clone skill is refused (see the guards above).
A release marked breaking is never applied without
--allow-breaking: a silently disappearing tool is exactly the change a human should see.get_versionreports the pairing (compatibility.paired_skill_version, newest release,breaking_pending), so an agent can self-check without extra tooling.A tool count alone is not a version check: v0.5.0 removed one tool and added another, leaving the count at 13 — only the fingerprint reveals that.
tests/test_compat.pyfails when the newest contract entry disagrees with the code's actual tool surface, so a release that forgets to record itself cannot ship quietly.scripts/docs-sync-check.pyis the release-time docs gate: it fails when any doc still names a tool the code dropped, claims a stale tool count, omits a tool, or disagrees with the contract. Run it first in every release — a tool count alone cannot reveal a renamed or removed tool.
Architecture
The MCP server manages a single Playwright Chromium instance in-process.
No subprocess daemon is used — the browser lives in the same process as the
MCP server. If the browser crashes, it is automatically restarted on the
next browser_login call.
This eliminates the fragile 3-process chain (MCP → CLI daemon → browser)
that caused connection errors with certain MCP clients (e.g. Goose's
ECONNREFUSED on internal proxy ports).
Example agent prompts
Once connected, you can ask your agent things like:
"What credentials do I have stored in my vault?"
"What API keys do I have stored?"
"Log me into kaggle.com"
"Open github.com and log me in"
"Check if I have a credential stored for z.ai"
"Get my top 10 starred repos from GitHub"
"Upload my package to PyPI"
"Push to my private repo"
"Protect the secrets in my project directory"
Related projects
Package | What It Does |
Drop-in replacement for | |
CLI + vault management — store, list, and manage credentials |
Testing
# From the repo root
pytestTests live in tests/ and cover crypto primitives, session management, consent
logic, the API client (with httpx mocking), and MCP tool behaviour. The test suite
requires no real network access or OS keychain — all external dependencies are mocked.
Security
Credentials are decrypted locally on your machine — never sent to the agent
The agent only receives HTTP responses or redacted CLI output, never credential values
All communication with the psamvault backend uses HTTPS
The browser is managed in-process — no subprocess daemon or internal HTTP proxy
CLI command output is scanned for the credential value and redacted before returning to the agent
License
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
- JustOnceOAuthai.justonce
Persistent memory for AI assistants — one shared, OAuth-secured vault for every MCP client.
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server that lets AI agents call APIs without ever seeing the credentials, using a local encrypted vault and per-secret allowlist policies for HTTP requests and subprocess environment variables.1AGPL 3.0
- AlicenseNot gradedqualityCmaintenanceSecrets management MCP server that injects credentials into API requests for AI agents, enforcing policies and logging all activity without exposing raw keys.42 npm30MIT

wundervaultofficial
AlicenseAqualityAmaintenanceMCP server for Wundervault zero-knowledge secret management. Exposes vault secrets to AI agents via the Model Context Protocol — secrets are decrypted server-side and never returned to the agent in plaintext.1324 npm2AGPL 3.0- AlicenseNot gradedqualityCmaintenanceMCP server enabling AI agents to use secrets (API keys, tokens) via encrypted vault, executing HTTP/shell/SSH actions server-side while never exposing secret values to the AI.MIT