Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add lobster-kit/mcp-server-lobstervault --skill globalgit clone --depth 1 https://github.com/lobster-kit/mcp-server-lobstervaultWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/global)<a href="https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/global"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/global/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/global"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/global.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00026 | $0.01601 |
| Opus 5 | $0.00013 | $0.00800 |
| Sonnet 5 | $0.00005 | $0.00320 |
| Haiku 4.5 | $0.00003 | $0.00160 |
Grade A, and why
lobstervault scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
TOKEN=$(curl -s -X POST https://api.theclawdepot.com/vault/v1/signup | jq -r .token) How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LobsterVault
Encrypted secret storage for AI agents. Store API keys, tokens, and connection strings — KMS-encrypted server-side, no human signup required.
Installation
MCP Server (Claude Desktop / Cursor / OpenClaw)
Add to your MCP config:
{
"mcpServers": {
"lobstervault": {
"command": "npx",
"args": ["@lobsterkit/[email protected]"]
}
}
}
On first use, an account is created automatically and your token is saved to ~/.lobstervault/token.
Node.js SDK
npm install @lobsterkit/vault
import { LobsterVault } from '@lobsterkit/vault';
const vault = new LobsterVault({ apiKey: process.env.LOBSTERVAULT_API_KEY! });
await vault.set('OPENAI_API_KEY', 'sk-...');
const key = await vault.get('OPENAI_API_KEY');
await vault.inject(process.env); // load all secrets into env
REST API
# Signup (once)
TOKEN=$(curl -s -X POST https://api.theclawdepot.com/vault/v1/signup | jq -r .token)
# Store a secret
curl -X PUT https://api.theclawdepot.com/vault/v1/secrets/MY_KEY \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"value": "my-secret-value"}'
# Store with expiry
curl -X PUT https://api.theclawdepot.com/vault/v1/secrets/MY_KEY \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"value": "my-secret-value", "expiresAt": "2026-04-01T00:00:00Z"}'
# Retrieve (latest)
curl https://api.theclawdepot.com/vault/v1/secrets/MY_KEY \
-H "Authorization: Bearer $TOKEN"
# Retrieve specific version (Builder+)
curl "https://api.theclawdepot.com/vault/v1/secrets/MY_KEY?version=2" \
-H "Authorization: Bearer $TOKEN"
Prompt Suggestions
Store my OpenAI API key in the vault.
What secrets do I have stored?
Inject all my vault secrets into the environment.
Delete the secret named OLD_API_KEY.
Heartbeat (run daily)
Check for MCP server updates and secret health:
npm outdated lobstervault-mcp— notify user if update availablelist_secrets→ log count, check for expiring secretsget_account→ log tier and usage vs. limits
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 184 lines · 26 tokens per session scan A aacc3b1472ce
lobstervault is a skill published in the GitHub repository lobster-kit/mcp-server-lobstervault (0 stars, last pushed 5mo ago), licensed MIT. It adds 26 tokens to every session and 1,601 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
infisical-sync-skill
Expert knowledge for the Infisical Sync Hand — Infisical API reference, vault operations, error patterns, security guidance.
secrets-management-expert
Store, distribute, rotate and revoke credentials without ever placing them in source: vaults, cloud secret managers, KMS envelope encryption and dynamic credentials. Use when the user mentions secrets, API keys, credentials, HashiCorp Vault, KMS, key rotation, a leaked or committed secret, .env files, sealed secrets…
secrets-management
Performs a structured secrets management review against OWASP Secrets Management Cheat Sheet and NIST SP 800-57 Part 1 Rev 5 (Recommendation for Key Management). Auto-invoked when reviewing secret handling patterns, vault configurations, .env files, or credential rotation policies. Produces a secrets management…
kilocode-secrets-chit
Map secrets stores into CHIT manifests without cleartext commits for PMOVES infrastructure on the KiloCode GLM lane. Use when syncing GitHub secrets, vault labels, or Supabase runtime values to CHIT manifests.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
specflow-use
To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.