doppler_delete_secrets
Remove one or more secrets from a specific project and configuration in Doppler's secret management platform using the MCP Server Doppler tool.
Instructions
Delete one or more secrets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | The config/environment name | |
project | Yes | The Doppler project name | |
secrets | Yes | Array of secret names to delete |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "The config/environment name",
"type": "string"
},
"project": {
"description": "The Doppler project name",
"type": "string"
},
"secrets": {
"description": "Array of secret names to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project",
"config",
"secrets"
],
"type": "object"
}