@@ -23,6 +23,7 @@ Retrieves a specific AI Config's targeting by its key
2323
2424### Example Usage
2525
26+ <!-- UsageSnippet language="typescript" operationID="getAIConfigTargeting" method="get" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/targeting" -->
2627``` typescript
2728import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
2829
@@ -659,6 +660,7 @@ Here's an example:
659660
660661### Example Usage
661662
663+ <!-- UsageSnippet language="typescript" operationID="patchAIConfigTargeting" method="patch" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/targeting" -->
662664``` typescript
663665import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
664666
@@ -761,6 +763,7 @@ Get a list of all AI Configs in the given project.
761763
762764### Example Usage
763765
766+ <!-- UsageSnippet language="typescript" operationID="getAIConfigs" method="get" path="/api/v2/projects/{projectKey}/ai-configs" -->
764767``` typescript
765768import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
766769
@@ -837,6 +840,7 @@ Create a new AI Config within the given project.
837840
838841### Example Usage
839842
843+ <!-- UsageSnippet language="typescript" operationID="postAIConfig" method="post" path="/api/v2/projects/{projectKey}/ai-configs" -->
840844``` typescript
841845import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
842846
@@ -933,6 +937,7 @@ Delete an existing AI Config.
933937
934938### Example Usage
935939
940+ <!-- UsageSnippet language="typescript" operationID="deleteAIConfig" method="delete" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}" -->
936941``` typescript
937942import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
938943
@@ -1011,6 +1016,7 @@ Retrieve a specific AI Config by its key.
10111016
10121017### Example Usage
10131018
1019+ <!-- UsageSnippet language="typescript" operationID="getAIConfig" method="get" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}" -->
10141020``` typescript
10151021import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
10161022
@@ -1100,6 +1106,7 @@ Here's an example:
11001106
11011107### Example Usage
11021108
1109+ <!-- UsageSnippet language="typescript" operationID="patchAIConfig" method="patch" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}" -->
11031110``` typescript
11041111import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
11051112
@@ -1210,6 +1217,7 @@ The <code>model</code> in the request body requires a <code>modelName</code> and
12101217
12111218### Example Usage
12121219
1220+ <!-- UsageSnippet language="typescript" operationID="postAIConfigVariation" method="post" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/variations" -->
12131221``` typescript
12141222import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
12151223
@@ -1326,6 +1334,7 @@ Delete a specific variation of an AI Config by config key and variation key.
13261334
13271335### Example Usage
13281336
1337+ <!-- UsageSnippet language="typescript" operationID="deleteAIConfigVariation" method="delete" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/variations/{variationKey}" -->
13291338``` typescript
13301339import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
13311340
@@ -1406,6 +1415,7 @@ Get an AI Config variation by key. The response includes all variation versions
14061415
14071416### Example Usage
14081417
1418+ <!-- UsageSnippet language="typescript" operationID="getAIConfigVariation" method="get" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/variations/{variationKey}" -->
14091419``` typescript
14101420import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
14111421
@@ -1501,6 +1511,7 @@ Here's an example:
15011511
15021512### Example Usage
15031513
1514+ <!-- UsageSnippet language="typescript" operationID="patchAIConfigVariation" method="patch" path="/api/v2/projects/{projectKey}/ai-configs/{configKey}/variations/{variationKey}" -->
15041515``` typescript
15051516import { LaunchDarkly } from " @launchdarkly/mcp-server" ;
15061517
0 commit comments