@thelacanians/tinyvault
v0.22.2
Published
Local-first secrets management CLI and MCP server. Single binary, no accounts, no cloud. Secrets for developers and AI agents.
Maintainers
Readme
@thelacanians/tinyvault
Local-first secrets management CLI and MCP server. Single binary, no accounts, no cloud — a passphrase-protected vault on your machine, with an MCP server for AI agents.
This package is a thin launcher: it installs the tvault binary for your
platform (via per-platform optional dependencies) and runs it directly.
Install
npm install -g @thelacanians/tinyvaultor run without installing:
npx -y @thelacanians/tinyvault --helpQuickstart
tvault init # create ~/.tvault
tvault set DATABASE_URL "postgres://..." # store a secret
tvault run -- npm start # inject as env varsMCP server (AI agents)
TVAULT_PASSPHRASE=your-passphrase tvault mcpMCP host configuration (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"tinyvault": {
"command": "npx",
"args": ["-y", "@thelacanians/tinyvault", "mcp"]
}
}
}tvault mcp cannot prompt for a passphrase (stdin carries MCP messages) —
supply TVAULT_PASSPHRASE through the host's secret/environment controls.
Without ~/.tvault/mcp-policy.yaml, the server starts fail-closed (metadata
only, no values, no writes).
Update
npm install -g @thelacanians/tinyvault@latestMore
- Docs: https://tinyvault.dev
- Security model: https://tinyvault.dev/reference/security
- Source: https://github.com/abdul-hamid-achik/tinyvault
