Skip to main content
FuseFuse
IntegrationsDopplerActions

List Doppler secret names

List secret names in a config. Always requests include_dynamic_secrets=false to avoid lease issuance. Returns at most 1,000 names.

Agent markdown

secrets.names.list · Doppler · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
projectstringYesminLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$
configstringYesminLength 1; maxLength 60; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$
include_managed_secretsbooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namesarray<string>YesmaxItems 1000
names[]stringYesminLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "project": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128,
      "pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
    },
    "config": {
      "type": "string",
      "minLength": 1,
      "maxLength": 60,
      "pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
    },
    "include_managed_secrets": {
      "type": "boolean"
    }
  },
  "required": [
    "project",
    "config"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "names": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200,
        "pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
      },
      "maxItems": 1000
    }
  },
  "required": [
    "names"
  ]
}