delete-secret
Remove a specific secret from a project within the Infisical MCP Server by specifying the project ID, environment slug, and secret name.
Instructions
Delete a secret in Infisical
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentSlug | Yes | The slug of the environment to delete the secret from (required) | |
projectId | Yes | The ID of the project to delete the secret from (required) | |
secretName | Yes | The name of the secret to delete (required) | |
secretPath | No | The path of the secret to delete (Defaults to /) |
Input Schema (JSON Schema)
{
"properties": {
"environmentSlug": {
"description": "The slug of the environment to delete the secret from (required)",
"type": "string"
},
"projectId": {
"description": "The ID of the project to delete the secret from (required)",
"type": "string"
},
"secretName": {
"description": "The name of the secret to delete (required)",
"type": "string"
},
"secretPath": {
"description": "The path of the secret to delete (Defaults to /)",
"type": "string"
}
},
"required": [
"projectId",
"environmentSlug",
"secretName"
],
"type": "object"
}