Skip to main content
Glama

doppler_environments_list

Retrieve all available environments within a Doppler project to manage configuration settings and deployment targets.

Instructions

List all environments in a Doppler project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNoThe Doppler project name (optional if set via doppler setup)

Implementation Reference

  • Specific handler logic within buildDopplerCommand function that constructs the Doppler CLI command 'doppler environments list [--project PROJ] --json' for the doppler_environments_list tool.
    case "doppler_environments_list": parts.push("environments", "list"); if (getString("project")) parts.push("--project", getString("project")!); parts.push("--json"); break;
  • Input schema definition for the doppler_environments_list tool, specifying optional project parameter.
    inputSchema: { type: "object", properties: { project: { type: "string", description: "The Doppler project name (optional if set via doppler setup)", }, }, },
  • src/tools.ts:152-164 (registration)
    Tool registration in the toolDefinitions array, including name, description, and schema for doppler_environments_list.
    { name: "doppler_environments_list", description: "List all environments in a Doppler project", inputSchema: { type: "object", properties: { project: { type: "string", description: "The Doppler project name (optional if set via doppler setup)", }, }, }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aledlie/doppler-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server