ld_list_environments

Pack: launchdarkly · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ld_list_environments for the schema, then POST the same URL with its arguments for the data.

Return bounded LaunchDarkly environments for a project with keys, names, colors, tags, approval settings, and archival state. Answers where feature releases and experiments run.

Parameters

NameTypeRequiredDescription
project_keystringyes

Example call

Arguments

{
  "_apiKey": "your-launchdarkly-reader-token",
  "project_key": "web-app",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/launchdarkly/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ld_list_environments","arguments":{"_apiKey":"your-launchdarkly-reader-token","project_key":"web-app","limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ld_list_environments', {
  "_apiKey": "your-launchdarkly-reader-token",
  "project_key": "web-app",
  "limit": 20
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the launchdarkly pack
{
  "mcpServers": {
    "launchdarkly": {
      "url": "https://gateway.pipeworx.io/launchdarkly/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026