lobstervault

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

An encrypted storage service for saving sensitive values used by AI agents, such as API keys, passwords, tokens, and database connection strings. It provides tools to store, retrieve, list, delete, and manage these values.

In plain words
What is it for?
Persisting and managing secrets an agent needs when connecting to APIs, databases, or other services.
Why use it?
It keeps credentials available between sessions without placing them directly in prompts or code. The service uses encryption and can load stored values into the process environment.

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 Persisting and managing secrets an agent needs when connecting to APIs, databases, or other services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lobster-kit/mcp-server-lobstervault/clawhub
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 clawhub
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/clawhub/github.svg)](https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/clawhub)
Your own site
<a href="https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/clawhub"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/clawhub/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/clawhub"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/clawhub.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,354 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00032 $0.01354
Opus 5 $0.00016 $0.00677
Sonnet 5 $0.00006 $0.00271
Haiku 4.5 $0.00003 $0.00135

Measured 9d ago against content hash 8252e3ed1a2a, 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 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/clawhub/SKILL.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LobsterVault

Encrypted secret storage for agents. Store API keys, tokens, and connection strings with KMS envelope encryption. No API keys, no human signup, no configuration.

Full docs: https://api.theclawdepot.com/vault/docs


Setup

Add to your MCP config (.mcp.json, claude_desktop_config.json, .cursor/mcp.json, etc.):

{
  "mcpServers": {
    "lobstervault": {
      "command": "npx",
      "args": ["@lobsterkit/[email protected]"]
    }
  }
}

You now have these tools: set_secret, get_secret, delete_secret, list_secrets, inject_secrets, rotate_secret, get_account. No code to write.

Also available as a Node.js SDK and REST API — see theclawdepot.com/vault.


Heartbeat (run daily)

On startup and once per day, run a maintenance heartbeat:

  1. Check for MCP server updates:

    npm outdated lobstervault-mcp
    

    If a new version is available, notify the user — do not auto-install.

  2. Check secret health:

    // Using MCP tools:
    // call list_secrets → log count and any expiring secrets
    // call get_account → log tier and secret count vs. limit
    

When to Use This

  • Storing API keys, tokens, or passwords that need to persist between sessions
  • Connecting to LobsterDB: connection strings are automatically stored here on create_database
  • Any credential that should not appear in conversation history or prompts
  • Agent-to-agent secret sharing (scoped by account)

Core Workflow

set_secret → get_secret (when needed) → inject_secrets (at session start)

Use inject_secrets at the start of an agent session to load all stored credentials into the environment.


Storing a Secret

set_secret(name: "OPENAI_API_KEY", value: "sk-...")
// => version: 1

Retrieving a Secret

get_secret(name: "OPENAI_API_KEY")
// => Secret: OPENAI_API_KEY
//    Value: sk-...

get_secret(name: "OPENAI_API_KEY", version: 2)
// => Retrieves version 2 specifically (Builder+ tier)

Read the full file on GitHub · 170 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 170 lines · 32 tokens per session scan A 8252e3ed1a2a

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 32 tokens to every session and 1,354 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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