lobstervault

lobstervault is a skill for Claude Code, Codex from lobster-kit/mcp-server-lobstervault. It costs 26 tokens per session (1,601 once invoked), scanned A, original, MIT.

An encrypted vault for storing API keys, access tokens, and connection strings for agents.

In plain words
What is it for?
Use it to save and retrieve secrets, load stored secrets into environment variables, and set expiration times through its SDK or REST API.
Why use it?
It keeps sensitive values in protected storage instead of placing them directly in source code or configuration files.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: positional $N argument; built for openclaw.

Good fit Use it to save and retrieve secrets, load stored secrets into environment variables, and set expiration times through its SDK or REST API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lobster-kit/mcp-server-lobstervault/global
Install

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.

Any agent
npx skills add lobster-kit/mcp-server-lobstervault --skill global
Clone the repo
git clone --depth 1 https://github.com/lobster-kit/mcp-server-lobstervault

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for lobstervault

README.md
[![agentmods](https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/global/github.svg)](https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/global)
Your own site
<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.

agentmods 80×15 button for lobstervault

Your own site · 80×15
<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>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,601 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash aacc3b1472ce, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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)
skills/global/SKILL.md · 184 lines

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:

  1. npm outdated lobstervault-mcp — notify user if update available
  2. list_secrets → log count, check for expiring secrets
  3. get_account → log tier and usage vs. limits

Read the full file on GitHub · 184 lines

Changes

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.

  1. 9d ago First seen · 184 lines · 26 tokens per session scan A aacc3b1472ce

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

infisical-sync-skill

Expert knowledge for the Infisical Sync Hand — Infisical API reference, vault operations, error patterns, security guidance.

RightNow-AI/openfang · 31 tokens

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…

personamanagmentlayer/pcl · 96 tokens

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…

UnitOneAI/SecuritySkills · 82 tokens

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.

POWERFULMOVES/PMOVES.AI · 52 tokens

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…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens