Create Secret
create_secretGenerate encrypted, self-destructing links to securely share sensitive data like passwords and API keys using end-to-end encryption that keeps plaintext hidden from servers.
Instructions
Create a secure, self-destructing link for sharing sensitive data like passwords, API keys, or credentials. The secret is encrypted end-to-end — the server never sees plaintext. Supports reading secrets from environment variables, files, or .env files without exposing them in the conversation. Optionally provide a label to identify the secret in your history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The secret content to encrypt and share. Max 1000 characters. | |
| max_views | No | Maximum number of times the secret can be viewed before self-destructing. Defaults to 1. | |
| expiry | No | How long before the secret expires. Defaults to 24h. | |
| passphrase | No | Optional passphrase for additional protection. The recipient will need this passphrase to view the secret. | |
| label | No | Optional label to identify this secret in your history (e.g. 'stripe-key', 'db-password'). |