For the complete documentation index, see llms.txt. This page is also available as Markdown.

Secrets

Back to the MCP tool reference.

list_secrets

List names, owners, and context only; never retrieve secret values.

Operation type: Read-only

Annotations: read-only true, destructive false, idempotent true, open-world true

Input schema:

{
  "properties": {
    "cluster": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Cluster"
    },
    "limit": {
      "default": 1000,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Org"
    },
    "project": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project"
    }
  },
  "title": "list_secretsArguments",
  "type": "object"
}

Output schema:

get_secret_to_file

Write a secret to a new mode-0600 local file. The destination must be new, and the secret value is never returned.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

create_secret_from_source

Create a secret without accepting or returning its value. File sources must be private regular files.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

delete_secret

Delete one exact secret under full or owned managed policy.

Operation type: Destructive write

Annotations: read-only false, destructive true, idempotent true, open-world true

Input schema:

Output schema:

Last updated

Was this helpful?