create-secret
Securely store encrypted API keys, tokens, and passwords with AES-256 encryption. Organize secrets by environment tags and set expiration times for controlled access management.
Instructions
Create a new secret. Secrets with the same name can coexist if they have different env tags.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name for the secret (e.g. STRIPE_SECRET_KEY) | |
| value | Yes | The secret value to encrypt and store | |
| description | No | Human-readable description of what this secret is for | |
| tags | No | Tags as key:value pairs, e.g. { "env": "production", "project": "acme" } | |
| domain | No | Associated domain for browser extension, e.g. "api.stripe.com" | |
| ttlHours | No | Time-to-live in hours. Omit for permanent (no expiry) |