# Doppler

Doppler is a secrets management platform that helps developers organize and sync environment variables across teams and infrastructure.

- **Category:** developer tools
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 62
- **Triggers:** 0
- **Slug:** `DOPPLER`
- **Version:** 20260312_00

## Tools

### List Activity Logs

**Slug:** `DOPPLER_ACTIVITY_LOGS_LIST`

List workplace activity logs with pagination support. Retrieves a paginated list of activity logs showing actions performed by users and bots in your Doppler workplace, such as creating projects, modifying secrets, generating tokens, and other workspace events. Each log entry includes details about the actor, timestamp, and affected resources. Use this tool when you need to audit workplace activity, track changes, or investigate who performed specific actions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (default: 1) |
| `per_page` | integer | No | Number of items per page (default: 20) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Activity Log

**Slug:** `DOPPLER_ACTIVITY_LOGS_RETRIEVE`

Retrieve detailed information about a specific activity log entry. Activity logs track all actions performed in the Doppler workplace including project creation, secret modifications, user actions, etc. Use the List Activity Logs action to discover available log IDs.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The Activity Log's unique identifier. Obtain log IDs from the List Activity Logs action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Add Webhook

**Slug:** `DOPPLER_ADD_WEBHOOK`

Tool to create a new webhook for a Doppler project. Use when you need to configure webhook notifications for secret changes or other events in a project. The webhook URL must use HTTPS. Optionally configure authentication, specific configs to monitor, custom payload templates, or request signing secrets.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | The webhook URL. Must be https for security. |
| `secret` | string | No | Secret key for webhook request signing verification. See: https://docs.doppler.com/docs/webhooks#verify-webhook-with-request-signing |
| `payload` | string | No | Custom JSON payload template. See: https://docs.doppler.com/docs/webhooks#default-payload |
| `project` | string | No | The project's name or slug identifier |
| `authentication` | object | No | Authentication configuration for the webhook. |
| `enable_configs` | array | No | Config slugs that the webhook should be enabled for. If not specified, webhook applies to all configs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Authenticated User Info

**Slug:** `DOPPLER_AUTH_ME`

Tool to retrieve information about the authenticated user or token. Use when you need to verify authentication status or get details about the current token's workplace and permissions.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Config Log

**Slug:** `DOPPLER_CONFIG_LOGS_GET`

Tool to retrieve a specific config log from Doppler. Use when you need to view details about a particular configuration change or event.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `log` | string | Yes | Unique identifier for the log object. |
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Config Logs

**Slug:** `DOPPLER_CONFIG_LOGS_LIST`

Tool to retrieve configuration change logs for a specific config in a project. Use when you need to view the history of configuration changes, track who made changes, or identify rollback actions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |
| `per_page` | integer | No | Number of items per page for pagination. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Rollback Config Log

**Slug:** `DOPPLER_CONFIG_LOGS_ROLLBACK`

Tool to rollback a config to a selected log version. Use when needing to undo a specific change by its log ID, after confirming project, config, and log ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `log` | string | Yes | The Config Log ID to roll back |
| `config` | string | Yes | Name of the config where the log occurred |
| `project` | string | Yes | Unique identifier of the project containing the config |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clone Config

**Slug:** `DOPPLER_CONFIGS_CLONE`

Tool to clone a branch config including all its secrets. Use after confirming the source config details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name for the new cloned config. This will create a new branch config with all secrets from the source config. |
| `config` | string | Yes | Name of the branch config to clone (must be a non-root config). |
| `project` | string | Yes | Unique identifier of the project where the source config resides. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Config

**Slug:** `DOPPLER_CONFIGS_CREATE`

Tool to create a branch config. Use when you need to programmatically establish a new branch-based configuration for a specified project and environment. The config name MUST start with the environment identifier followed by an underscore (e.g., 'dev_feature' for dev environment). Use after selecting the target project and environment.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Unique name for the new branch config. MUST start with the environment identifier followed by an underscore (e.g., 'dev_' for dev environment, 'prd_' for prd environment) |
| `project` | string | Yes | Identifier of the project to which this config will belong |
| `environment` | string | Yes | Identifier of the environment to which this config will belong |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Config

**Slug:** `DOPPLER_CONFIGS_DELETE`

Tool to delete a config permanently. Use when you need to remove a config that is no longer needed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name (slug) of the config to delete. |
| `project` | string | Yes | Unique identifier (slug) of the project that contains the config. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Config

**Slug:** `DOPPLER_CONFIGS_GET`

Tool to retrieve a specific Doppler config by project and config name. Use when you need to get configuration details for a specific project environment.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Doppler Configs

**Slug:** `DOPPLER_CONFIGS_LIST`

Tool to list configurations from a Doppler project. Use when you need to retrieve all configs or filter by environment. Supports pagination for large result sets.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Defaults to 1. |
| `project` | string | Yes | The project's name from which to list configs. This is a required parameter. |
| `per_page` | integer | No | Number of items to return per page. Defaults to 20. |
| `environment` | string | No | The environment from which to list configs. If not specified, configs from all environments will be listed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Lock Config

**Slug:** `DOPPLER_CONFIGS_LOCK`

Lock a Doppler config to prevent it from being renamed or deleted. Locking provides protection against accidental modifications to critical configurations. Use this after confirming the correct project and config identifiers.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config to lock. This is the config name, not the slug. |
| `project` | string | Yes | Unique identifier for the project containing the config to lock. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Unlock Config

**Slug:** `DOPPLER_CONFIGS_UNLOCK`

Tool to unlock a config. Use when you need to allow renaming or deletion of a previously locked config.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config to unlock. Required unless using a Service Token. |
| `project` | string | Yes | Unique identifier for the project. Required unless using a Service Token. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Config

**Slug:** `DOPPLER_CONFIGS_UPDATE`

Rename an existing Doppler config within a project. This action modifies the config's name while preserving all secrets and settings. Before using this action: 1. Use DOPPLER_PROJECTS_LIST to get the project identifier 2. Use DOPPLER_CONFIGS_LIST to verify the config exists and get its current name 3. Ensure the new name is unique within the project Note: Root configs and locked configs cannot be renamed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | New name for the config. Must be unique within the project. Config names typically follow the pattern: <environment>_<name> (e.g., 'dev_api', 'prd_backend'). |
| `config` | string | Yes | Current name of the config to rename. Must be an existing config in the specified project. Use DOPPLER_CONFIGS_LIST to find available configs. |
| `project` | string | Yes | Unique identifier for the project that the config belongs to. Use the project slug/name from DOPPLER_PROJECTS_LIST. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Encrypted Share Link

**Slug:** `DOPPLER_CREATE_ENCRYPTED`

Create a Doppler Share link for an end-to-end encrypted secret. This tool generates a secure, shareable link where the secret is encrypted client-side and decrypted in the recipient's browser, ensuring Doppler never has access to the plaintext. Use this when you need to securely share sensitive information (API keys, passwords, credentials) with controlled expiration. The secret must be pre-encrypted using AES-256-GCM with PBKDF2-SHA256 key derivation before calling this tool. Security features: - End-to-end encryption: Secret is never exposed to Doppler's servers - Configurable expiration: Set limits on views (1-50 or unlimited) and days (1-90) - Password-protected: Recipients must enter the correct password to decrypt

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `expire_days` | integer | No | Number of days until the share link expires. Valid range: 1-90 days. Defaults to 1 day if not specified. The link will be automatically deleted after this period. |
| `expire_views` | integer | No | Maximum number of times the share link can be viewed before expiring. Valid range: 1-50, or -1 for unlimited views. Defaults to 1 if not specified. Use -1 for links that should not expire based on view count. |
| `encryption_kdf` | string | Yes | Key derivation function used for encryption. Must be 'pbkdf2' (PBKDF2-SHA256). This value is required by Doppler's API specification for encrypted shares. |
| `hashed_password` | string | Yes | SHA256 hash of the password (hex-encoded, 64 characters). Important: Hash the password itself, NOT the derived encryption key. The API uses this to verify the password when recipients access the share link. |
| `encrypted_secret` | string | Yes | Base64 encoded AES-256-GCM encrypted secret payload. Format: base64(salt + IV + ciphertext), where salt is 16 bytes, IV is 12 bytes, and ciphertext includes the authentication tag. The secret is encrypted with a 256-bit key derived from the password via PBKDF2-SHA256. |
| `encryption_salt_rounds` | integer | Yes | PBKDF2 iteration count for key derivation. Must be exactly 1000000 (1 million iterations) as required by Doppler's API specification. This provides strong key stretching security. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Plain Text Share Link

**Slug:** `DOPPLER_CREATE_PLAIN`

Tool to generate a Doppler Share link by sending a plain text secret. Use when you need to securely share secrets with expiration controls. The secret is not stored in plain text by Doppler; the receive flow is end-to-end encrypted where the encrypted secret is decrypted in the browser.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `secret` | string | Yes | The plain text secret to share. This will be encrypted in the browser during the receive flow. |
| `expire_days` | integer | No | Number of days before link expires. Valid range: 1-90 days. If not specified, uses Doppler default. |
| `expire_views` | integer | No | Number of views before link expires. Valid values: 1-50 for limited views, or -1 for unlimited views. If not specified, uses Doppler default. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Service Token

**Slug:** `DOPPLER_CREATE_SERVICE_TOKEN`

Tool to create a new service token for a Doppler config. Use when you need to generate API credentials for services to access secrets programmatically. The token grants either read-only or read/write access to the specified config. Store the returned token key securely as it cannot be retrieved later.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the service token. |
| `access` | string ("read" | "read/write") | No | Token's capabilities - either 'read' for read-only access or 'read/write' for full access. |
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |
| `expire_at` | string | No | Unix timestamp (seconds since epoch) as a string when the token should expire (e.g., '1735689599' for 2024-12-31 23:59:59 UTC). If not provided, token will not expire. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Service Token

**Slug:** `DOPPLER_DELETE_SERVICE_TOKEN`

Tool to delete an existing service token from a Doppler config. Use when you need to revoke or remove a service token that is no longer needed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | No | The slug of the service token to delete. |
| `token` | string | No | The token value to delete. |
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Webhook

**Slug:** `DOPPLER_DELETE_WEBHOOK`

Tool to delete an existing webhook. Use when you need to permanently remove a webhook from a project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Webhook's slug identifier to delete. |
| `project` | string | No | The project's name to filter webhooks. Optional parameter to specify which project the webhook belongs to. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Disable Webhook

**Slug:** `DOPPLER_DISABLE_WEBHOOK`

Tool to disable an existing Doppler webhook. Use when you need to temporarily stop a webhook from receiving notifications without deleting it.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Unique identifier (slug) of the webhook to disable. |
| `project` | string | No | The project's name. Optional - if not provided, the webhook will be disabled across all projects. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Revoke Dynamic Secret Lease

**Slug:** `DOPPLER_DYNAMIC_SECRETS_REVOKE_LEASE`

Revoke a dynamic secret lease immediately before its TTL expires. Use this tool when you need to terminate access to a dynamic secret (e.g., AWS IAM user, database credentials) by invalidating its active lease. This is useful for security purposes when access should be revoked before the natural expiration time. Prerequisites: The lease must have been previously issued via the secrets list or download endpoints with include_dynamic_secrets=true.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lease` | string | Yes | Unique identifier of the lease to revoke. This is obtained when issuing a lease via the secrets list/download endpoints with include_dynamic_secrets=true. |
| `config` | string | Yes | Name or slug of the config containing the dynamic secret. This is the environment config (e.g., 'dev', 'prd', 'stg') where the dynamic secret is defined. |
| `project` | string | No | Unique identifier for the project (e.g., 'backend-api', 'my-project'). Required unless using a Service Token that is already scoped to a specific project. |
| `dynamic_secret` | string | Yes | Name of the dynamic secret for which to revoke the lease. Dynamic secret names are typically in uppercase with underscores (e.g., 'AWS_IAM_USER', 'DB_CREDENTIALS'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Enable Webhook

**Slug:** `DOPPLER_ENABLE_WEBHOOK`

Tool to enable a previously disabled webhook. Use when you need to reactivate a webhook that was temporarily disabled.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Webhook's unique slug identifier. |
| `project` | string | No | The project's name. Optional parameter to specify which project the webhook belongs to. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Environment

**Slug:** `DOPPLER_ENVIRONMENTS_CREATE`

Create a new environment in a Doppler project. Environments (like dev, staging, prod) organize different configurations within a project. Use this when you need to set up a new deployment environment for secrets management. Each environment requires a unique slug within the project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Display name for the new environment |
| `slug` | string | Yes | URL-friendly identifier for the environment (e.g., 'dev', 'staging', 'prod') |
| `project` | string | Yes | Project identifier (slug) to associate the new environment with |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Environment

**Slug:** `DOPPLER_ENVIRONMENTS_DELETE`

Tool to delete an environment. Use when you need to remove an environment from a project after confirming it's no longer in use.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | Name of the project containing the environment to delete. |
| `environment` | string | Yes | Slug of the environment to delete (e.g., 'production'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Environment

**Slug:** `DOPPLER_ENVIRONMENTS_GET`

Retrieves detailed metadata for a specific Doppler environment within a project. Use this to get information about an environment including its name, creation date, first fetch timestamp, and personal configs setting. You must provide both the project slug and environment slug.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | The project slug (unique identifier) containing the environment. |
| `environment` | string | Yes | The environment slug to retrieve (e.g., 'dev', 'stg', 'prd'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Environments

**Slug:** `DOPPLER_ENVIRONMENTS_LIST`

Tool to list all environments in a Doppler project. Use when you need to retrieve the environments available in a specific project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | The project's name. This is the unique identifier for the Doppler project whose environments you want to list. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Rename Environment

**Slug:** `DOPPLER_ENVIRONMENTS_RENAME`

Rename an environment's display name within a Doppler project. This updates only the human-readable name; the environment slug remains unchanged. Use this when you need to update how an environment appears in the UI without affecting its identifier.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | New display name for the environment. |
| `project` | string | Yes | Identifier of the project containing the environment to rename. |
| `environment` | string | Yes | Slug (unique identifier) of the environment to rename. Common values include 'dev', 'stg', 'prd'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Webhook

**Slug:** `DOPPLER_GET_WEBHOOK`

Tool to retrieve an existing webhook by its slug. Use when you need to get webhook details including URL, authentication settings, enabled status, and payload configuration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Webhook's slug (uses webhook ID) |
| `project` | string | Yes | The project's name (required for retrieving webhook details) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workplace User

**Slug:** `DOPPLER_GET_WORKPLACE_USER`

Tool to retrieve a specific workplace user by their workplace_user id. Use when you need to get detailed information about a workplace user including their access level, creation date, and nested user details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | The workplace_user id (not the nested user.slug). This is the 'id' field returned from the DOPPLER_USERS_LIST endpoint response (e.g., 'ca182cb0-7d87-4dad-a6d6-97124fb0c264') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Remove Group Member

**Slug:** `DOPPLER_GROUPS_DELETE_MEMBER`

Remove a member from a Doppler group. This permanently removes the specified member (workplace_user, group, invite, or service_account) from the group. Requires valid group and member slugs. Returns 204 status code on success.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Unique UUID identifier of the group from which to remove the member (must be a valid UUID format) |
| `type` | string | Yes | Member type. Must be one of: 'workplace_user' (individual users), 'group' (user groups), 'invite' (pending invitations), or 'service_account' (service accounts) |
| `member_slug` | string | Yes | Unique slug identifier of the member to remove from the group. This should match the slug of a workplace_user, group, invite, or service_account depending on the type specified |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Integrations

**Slug:** `DOPPLER_INTEGRATIONS_LIST`

Tool to retrieve all existing integrations in Doppler. Use when you need to list all configured integrations.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Invites

**Slug:** `DOPPLER_INVITES_LIST`

Tool to list open workplace invites. Use when you need to retrieve all pending invitations for the current Doppler workplace after authenticating.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Change Requests

**Slug:** `DOPPLER_LIST_CHANGE_REQUESTS`

List existing change requests in the Doppler workplace. Use this tool to retrieve all change requests and view their current status. Change requests are a workflow-driven mechanism for proposing additions, modifications, or deletions of values stored in Doppler, which require review and approval from authorized team members. Note: This feature requires a Team or Enterprise plan. Attempting to use this endpoint with a Free or Starter plan will result in a 403 Forbidden error.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Project Members

**Slug:** `DOPPLER_LIST_PROJECT_MEMBERS`

Tool to list all members of a Doppler project including users, groups, service accounts, and invites. Use when you need to retrieve all members with their roles and environment access permissions for a specific project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Use this to navigate through multiple pages of results. |
| `project` | string | Yes | Project slug identifier for which to list members. |
| `per_page` | integer | No | Number of items to return per page. Controls how many members are returned in a single request. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Service Tokens

**Slug:** `DOPPLER_LIST_SERVICE_TOKENS`

Tool to list all service tokens for a specific Doppler config. Use when you need to view existing API credentials and their access levels.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Workplace Users

**Slug:** `DOPPLER_LIST_USERS`

Tool to list all users in the Doppler workplace. Use when you need to retrieve user information, check user access levels, or filter users by email address.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | The page of users to fetch. Use this to navigate through multiple pages of results. |
| `email` | string | No | Filter results to only include the user with the provided email address. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Webhooks

**Slug:** `DOPPLER_LIST_WEBHOOKS`

Tool to list all webhooks configured for a Doppler project. Use when you need to retrieve all webhooks or check webhook configurations for a specific project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | The project's name (slug) to list webhooks for. This is a required parameter. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Remove Project Member

**Slug:** `DOPPLER_PROJECT_MEMBERS_DELETE`

Tool to remove a member from a project. Use after confirming project slug, member type, and slug.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Member slug identifier (UUID format for workplace_user) to remove from the project. |
| `type` | string | Yes | Member type: 'workplace_user', 'group', 'invite', or 'service_account'. |
| `project` | string | Yes | Project slug identifier from which to remove the member. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project Member

**Slug:** `DOPPLER_PROJECT_MEMBERS_GET`

Retrieve a specific project member's details including their role and environment access permissions. Use this when you need to check a specific user's, group's, service account's, or invite's membership settings in a project. Requires the project slug, member type (workplace_user/group/invite/service_account), and member slug (UUID).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `slug` | string | Yes | Unique identifier (UUID) of the member to retrieve. |
| `type` | string | Yes | Member type. Must be one of: 'workplace_user' (individual workspace member), 'group' (member group), 'invite' (pending invitation), or 'service_account' (automated service account). |
| `project` | string | Yes | Project slug identifier to which the member belongs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Project Permissions

**Slug:** `DOPPLER_PROJECT_PERMISSIONS_LIST`

List all available project-level permissions in Doppler. Returns permission identifiers (slugs) that can be assigned to project roles when creating or updating custom roles. Use this to discover what permissions are available before configuring project role access.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project Role

**Slug:** `DOPPLER_PROJECT_ROLES_GET`

Retrieve detailed information about a specific project role in Doppler, including its permissions, display name, identifier, creation timestamp, and whether it's a custom or built-in role. Use this to understand what permissions a role grants before assigning it to users or groups.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role` | string | Yes | The role's unique identifier. Built-in roles include: 'admin' (full access), 'collaborator' (read/write), 'viewer' (read-only), and 'no_access' (no permissions). Custom roles can also be specified by their identifier. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Project Roles

**Slug:** `DOPPLER_PROJECT_ROLES_LIST`

Tool to list all available project roles in Doppler. Use when you need to retrieve all roles for permission management or to see what roles are available.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Project

**Slug:** `DOPPLER_PROJECTS_CREATE`

Tool to create a project. Use when you need to programmatically initialize a new Doppler project after authentication.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Project name. Recommended hyphen-separated lowercase. Must be 2-80 characters. |
| `description` | string | No | Optional project description. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Project

**Slug:** `DOPPLER_PROJECTS_DELETE`

Tool to delete a project permanently. Use after confirming irreversible removal.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | Unique identifier (name/slug) of the project to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project Details

**Slug:** `DOPPLER_PROJECTS_GET`

Tool to retrieve details of a specific Doppler project by its identifier. Use when you need to get project metadata including ID, slug, name, description, and creation timestamp.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Doppler Projects

**Slug:** `DOPPLER_PROJECTS_LIST`

Tool to list all Doppler projects in your workspace. Use when you need to retrieve available projects for configuration management or to get project details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Use this to navigate through multiple pages of results. |
| `per_page` | integer | No | Number of items to return per page. Controls how many projects are returned in a single request. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Secret

**Slug:** `DOPPLER_SECRETS_DELETE`

Tool to delete a secret from a Doppler config. Use when you need to permanently remove a secret from a specific project and config.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the secret to delete. |
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Download Secrets

**Slug:** `DOPPLER_SECRETS_DOWNLOAD`

Tool to download secrets from a Doppler config in various formats. Use when you need to retrieve all secrets or a subset of secrets from a specific project and config. Supports multiple output formats and name transformations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | No | Name of the config object. Not required if using a Service Token. |
| `format` | string ("json" | "dotnet-json" | "env" | "yaml" | "docker" | "env-no-quotes") | No | Format for the downloaded secrets. Defaults to 'json'. |
| `project` | string | No | Unique identifier for the project object. Not required if using a Service Token. |
| `secrets` | string | No | Comma-delimited list of secrets to include in the download (e.g., 'API_KEY,DATABASE_URL'). Defaults to all secrets if left unspecified. |
| `name_transformer` | string ("camel" | "upper-camel" | "lower-snake" | "tf-var" | "dotnet" | "dotnet-env" | "lower-kebab") | No | Transform secret names to a different case. If not specified, secret names remain unchanged. |
| `dynamic_secrets_ttl_sec` | integer | No | The number of seconds until dynamic leases expire. Must be used with `include_dynamic_secrets`. Defaults to 1800 (30 minutes) if not specified. |
| `include_dynamic_secrets` | boolean | No | Whether or not to issue leases and include dynamic secret values for the config. Defaults to false if not specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Secret

**Slug:** `DOPPLER_SECRETS_GET`

Tool to retrieve a specific secret from a Doppler project config. Use when you need to get the value of a specific secret including its raw and computed values.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the secret to retrieve. |
| `config` | string | Yes | Name of the config object (e.g., dev, staging, production). |
| `project` | string | Yes | Unique identifier for the project object. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Doppler Secrets

**Slug:** `DOPPLER_SECRETS_LIST`

Tool to list all secrets for a specific Doppler config within a project. Use when you need to retrieve secret values and metadata. Returns both raw and computed values for each secret, along with visibility settings and optional notes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |
| `dynamic_secrets_ttl_sec` | integer | No | The number of seconds until dynamic leases expire. Must be used with `include_dynamic_secrets`. Defaults to 1800 (30 minutes) if not specified. |
| `include_dynamic_secrets` | boolean | No | Whether or not to issue leases and include dynamic secret values for the config. Defaults to false if not specified. |
| `include_managed_secrets` | boolean | No | Whether to include Doppler's auto-generated (managed) secrets. Defaults to true if not specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Secret Names

**Slug:** `DOPPLER_SECRETS_NAMES`

Tool to retrieve the list of secret names from a specific Doppler config. Use when you need to list available secret names without their values.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |
| `include_dynamic_secrets` | boolean | No | Whether or not to issue leases and include dynamic secret values for the config |
| `include_managed_secrets` | boolean | No | Whether to include Doppler's auto-generated (managed) secrets |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Doppler Secrets

**Slug:** `DOPPLER_SECRETS_UPDATE`

Tool to update secrets in a Doppler config. Use when you need to create or update secret values in a specific project and config.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | string | Yes | Name of the config object. |
| `project` | string | Yes | Unique identifier for the project object. |
| `secrets` | object | No | Object of secrets you would like to save to the config. Key-value pairs where keys are secret names and values are secret values. Either 'secrets' or 'change_requests' is required (can't use both). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Secret Note

**Slug:** `DOPPLER_SECRETS_UPDATE_NOTE`

Tool to update a note for a secret in Doppler. Use when you need to add or modify documentation for a specific secret. Notes are stored at the project level and apply across all environments, though a config parameter is required for the API call. Notes help document secret usage, provide context, or store reference links.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `note` | string | Yes | The note you want to set on the secret. This note will be applied to the specified secret across all environments in the project. |
| `config` | string | Yes | Name of the config where the secret is located. This parameter is required by the API even though notes are stored at the project level. |
| `secret` | string | Yes | The name of the secret to update the note for. |
| `project` | string | Yes | Unique identifier for the project object where the secret resides. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Project

**Slug:** `DOPPLER_UPDATE_PROJECT`

Tool to update an existing Doppler project's name or description. Use when you need to rename a project or modify its description after it has been created.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | New name for the project. Recommended hyphen-separated lowercase. Must be 2-80 characters. |
| `project` | string | Yes | Unique identifier for the project object. This is the current project name/slug. |
| `description` | string | No | Optional updated description for the project. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Secret Note

**Slug:** `DOPPLER_UPDATE_SECRET_NOTE`

DEPRECATED: Use DopplerSecretsUpdateNote instead. Tool to set or update a note for a secret in Doppler. Use when you need to add or modify documentation for a specific secret. Notes are stored at the project level and apply across all environments.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `note` | string | Yes | The note to set on the secret, applied at project level across all environments. |
| `config` | string | Yes | Config identifier. Required despite being marked as deprecated in the API documentation. Notes are applied at the project level across all environments. |
| `secret` | string | Yes | The name of the secret to update the note for. |
| `project` | string | Yes | Unique identifier for the project object where the secret resides. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Webhook

**Slug:** `DOPPLER_UPDATE_WEBHOOK`

Tool to update an existing webhook configuration in Doppler. Use when you need to modify webhook URL, authentication, enabled configs, or other webhook settings.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | No | The webhook URL. Must be https |
| `slug` | string | Yes | Unique identifier (slug) of the webhook to update |
| `secret` | string | No | Secret used for request signing to verify webhook authenticity. See: https://docs.doppler.com/docs/webhooks#verify-webhook-with-request-signing |
| `payload` | string | No | Custom JSON payload for the webhook. See: https://docs.doppler.com/docs/webhooks#default-payload |
| `project` | string | No | The project's name |
| `enableConfigs` | array | No | Config slugs that the webhook should be enabled for |
| `authentication` | object | No | Authentication configuration for the webhook. |
| `disableConfigs` | array | No | Config slugs that the webhook should be disabled for |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Workplace Settings

**Slug:** `DOPPLER_UPDATE_WORKPLACE`

Tool to update workplace settings in Doppler. Use when you need to modify workplace name, billing email, or security email. At least one field must be provided to update.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Workplace name to update |
| `billing_email` | string | No | Billing email address for the workplace |
| `security_email` | string | No | Security email address for the workplace |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workplace Information

**Slug:** `DOPPLER_WORKPLACE_GET`

Tool to retrieve workplace information from Doppler. Use when you need to get workplace details including ID, name, billing email, and security email.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workplace Role

**Slug:** `DOPPLER_WORKPLACE_ROLES_GET`

Tool to retrieve workplace role information from Doppler. Use when you need to get details about a specific role including its permissions and metadata.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role` | string | Yes | The role's unique identifier. Common built-in values include 'owner', 'admin', 'collaborator'. Custom role identifiers are also supported. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Workplace Roles

**Slug:** `DOPPLER_WORKPLACE_ROLES_LIST`

Tool to list all workplace roles in your Doppler workspace. Use when you need to retrieve available workplace roles for user management or permission configuration.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Workplace Permissions

**Slug:** `DOPPLER_WORKPLACE_ROLES_LIST_PERMISSIONS`

Retrieves all available workplace permissions in Doppler. This action returns a comprehensive list of permission identifiers that can be assigned to workplace roles. Workplace permissions control access to organization-level features such as billing, team management, service accounts, integrations, audit logs, and other workplace settings. Use this action when you need to: - View all available permissions for workplace role configuration - Understand what permissions can be assigned to custom workplace roles - Audit the permission system capabilities in your Doppler workplace No parameters are required. This is a read-only, idempotent operation.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
