secure-vault-mcp
Click on "Install 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., "@secure-vault-mcpStore my OpenAI API key"
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.
secure-vault-mcp
MCP server for agent-native secrets management. 24,008 secrets have been found in MCP config files on public GitHub. This server solves that.
Agents need secrets to call APIs, but they shouldn't see raw values. secure-vault-mcp stores secrets encrypted with AES-256-GCM, issues short-lived scoped tokens, and injects secrets into requests server-side so the agent never handles plaintext credentials.
Install
npx secure-vault-mcpClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"secure-vault": {
"command": "npx",
"args": ["secure-vault-mcp"]
}
}
}From source
git clone https://github.com/mdfifty50-boop/secure-vault-mcp.git
cd secure-vault-mcp
npm install
node src/index.jsRelated MCP server: Agentic Vault
Tools
store_secret
Store an encrypted secret with optional rotation policy.
Param | Type | Default | Description |
| string | required | Secret name (e.g. "openai_api_key") |
| string | required | Secret value — encrypted immediately |
| string |
| Service this secret belongs to |
| string |
|
|
get_agent_token
Issue a short-lived, scoped token. The agent receives an opaque token ID, never the raw secret.
Param | Type | Default | Description |
| string | required | Requesting agent identifier |
| string | required | Service to get a token for |
| string |
|
|
| number | 300 | Token TTL (10s to 86400s) |
rotate_secrets
Rotate all secrets for a service. Old tokens are invalidated.
Param | Type | Description |
| string | Service whose secrets to rotate |
| string | New secret value |
audit_secret_access
View who accessed what secrets over a time range.
Param | Type | Default | Description |
| string |
|
|
| string | optional | Filter by agent |
| string | optional | Filter by secret |
scan_config_for_leaks
Scan config text for exposed secrets. Detects AWS keys, GitHub tokens, OpenAI/Anthropic keys, Slack tokens, Stripe keys, private key blocks, bearer tokens, and generic credentials using 12 regex patterns.
Param | Type | Default | Description |
| string | required | Config content to scan |
| string |
| Label for audit trail |
inject_secret_to_request
Return a request with the secret injected server-side. The agent provides a template with {{SECRET}} placeholder and a valid token ID.
Param | Type | Description |
| string | Token from get_agent_token |
| string | Template with |
Resources
URI | Description |
| All stored secret names with metadata (no raw values) |
Usage Pattern
1. store_secret — store credentials at setup time
2. get_agent_token — agent requests a scoped, time-limited token
3. inject_secret_to_request — inject secret into API call template
4. rotate_secrets — rotate when needed, old tokens auto-invalidate
5. scan_config_for_leaks — check config files before committing
6. audit_secret_access — review access trailSecurity Model
Secrets encrypted at rest with AES-256-GCM using a server-generated key
Agents receive opaque token IDs, never raw secret values
Tokens are scoped (read/write/admin) and time-limited (default 5 minutes)
Token rotation invalidates all outstanding tokens for the rotated secret
Full audit trail of every store, token issuance, and injection
In-memory storage — secrets exist only for the server session lifetime
Tests
npm testLicense
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mdfifty50-boop/secure-vault-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server