File tree Expand file tree Collapse file tree 11 files changed +28
-25
lines changed Expand file tree Collapse file tree 11 files changed +28
-25
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ management:
5
5
docVersion: "2.0"
6
6
speakeasyVersion: 1.550.0
7
7
generationVersion: 2.610.0
8
- releaseVersion: 0.2.3
9
- configChecksum: 64e4033921f7a729efefe14b4fa26a54
8
+ releaseVersion: 0.2.4
9
+ configChecksum: 2555cb3e7826b5789879c39e3eb2cb4f
10
10
repoURL: https://github.com/launchdarkly/mcp-server.git
11
11
installationURL: https://github.com/launchdarkly/mcp-server
12
12
published: true
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ generation:
19
19
oAuth2ClientCredentialsEnabled : false
20
20
oAuth2PasswordEnabled : false
21
21
typescript :
22
- version : 0.2.3
22
+ version : 0.2.4
23
23
additionalDependencies :
24
24
dependencies : {}
25
25
devDependencies : {}
Original file line number Diff line number Diff line change @@ -2,20 +2,20 @@ speakeasyVersion: 1.550.0
2
2
sources:
3
3
LaunchDarkly REST API:
4
4
sourceNamespace: launchdarkly-rest-api
5
- sourceRevisionDigest: sha256:fd1a291b59ad28da8bebcb8e5c338333803cfb281d728fac0cbf8ca09b34ccc9
5
+ sourceRevisionDigest: sha256:2a61012e7087f5ec2d50879adc8bc3f25ade05846060dd299ec555de944d7694
6
6
sourceBlobDigest: sha256:4469027627d647200a0f45a7aaa0819385301da942482381f6ea27eb28c63b5e
7
7
tags:
8
8
- latest
9
- - speakeasy-sdk-regen-1747949713
9
+ - speakeasy-sdk-regen-1747955279
10
10
- "2.0"
11
11
targets:
12
12
launchdarkly-mcp-server:
13
13
source: LaunchDarkly REST API
14
14
sourceNamespace: launchdarkly-rest-api
15
- sourceRevisionDigest: sha256:fd1a291b59ad28da8bebcb8e5c338333803cfb281d728fac0cbf8ca09b34ccc9
15
+ sourceRevisionDigest: sha256:2a61012e7087f5ec2d50879adc8bc3f25ade05846060dd299ec555de944d7694
16
16
sourceBlobDigest: sha256:4469027627d647200a0f45a7aaa0819385301da942482381f6ea27eb28c63b5e
17
17
codeSamplesNamespace: launchdarkly-rest-api-typescript-code-samples
18
- codeSamplesRevisionDigest: sha256:8aa9a61ec8e26204080925326829a647f5b249656e3b060e023a9cabefc8120a
18
+ codeSamplesRevisionDigest: sha256:e2fe06895f3e2d4e9e92cf37aa52126184329689165b6ef2473b8e5741a28b4a
19
19
workflow:
20
20
workflowVersion: 1.0.0
21
21
speakeasyVersion: latest
Original file line number Diff line number Diff line change @@ -15,17 +15,10 @@ The official [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) se
15
15
## Table of Contents
16
16
<!-- $toc-max-depth=2 -->
17
17
* [ LaunchDarkly's Model Context Protocol (MCP) Server] ( #launchdarklys-model-context-protocol-mcp-server )
18
- * [ SDK Installation] ( #sdk- installation )
18
+ * [ Installation] ( #installation )
19
19
* [ Requirements] ( #requirements )
20
- * [ SDK Example Usage] ( #sdk-example-usage )
21
- * [ Authentication] ( #authentication )
22
20
* [ Available Resources and Operations] ( #available-resources-and-operations )
23
- * [ Standalone functions] ( #standalone-functions )
24
- * [ Retries] ( #retries )
25
- * [ Error Handling] ( #error-handling )
26
- * [ Server Selection] ( #server-selection )
27
- * [ Custom HTTP Client] ( #custom-http-client )
28
- * [ Debugging] ( #debugging )
21
+ * [ Available environments] ( #available-environments )
29
22
* [ Development] ( #development )
30
23
* [ Maturity] ( #maturity )
31
24
* [ Contributions] ( #contributions )
Original file line number Diff line number Diff line change @@ -24,4 +24,14 @@ Based on:
24
24
### Generated
25
25
- [ typescript v0.2.3] .
26
26
### Releases
27
- - [ NPM v0.2.3] https://www.npmjs.com/package/@launchdarkly/mcp-server/v/0.2.3 - .
27
+ - [ NPM v0.2.3] https://www.npmjs.com/package/@launchdarkly/mcp-server/v/0.2.3 - .
28
+
29
+ ## 2025-05-22 23:07:43
30
+ ### Changes
31
+ Based on:
32
+ - OpenAPI Doc
33
+ - Speakeasy CLI 1.550.0 (2.610.0) https://github.com/speakeasy-api/speakeasy
34
+ ### Generated
35
+ - [ typescript v0.2.4] .
36
+ ### Releases
37
+ - [ NPM v0.2.4] https://www.npmjs.com/package/@launchdarkly/mcp-server/v/0.2.4 - .
Original file line number Diff line number Diff line change 2
2
3
3
{
4
4
"name" : " @launchdarkly/mcp-server" ,
5
- "version" : " 0.2.3 " ,
5
+ "version" : " 0.2.4 " ,
6
6
"exports" : {
7
7
"." : " ./src/index.ts" ,
8
8
"./models/errors" : " ./src/models/errors/index.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @launchdarkly/mcp-server" ,
3
- "version" : " 0.2.3 " ,
3
+ "version" : " 0.2.4 " ,
4
4
"author" : " LaunchDarkly" ,
5
5
"type" : " module" ,
6
6
"bin" : {
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
65
65
export const SDK_METADATA = {
66
66
language : "typescript" ,
67
67
openapiDocVersion : "2.0" ,
68
- sdkVersion : "0.2.3 " ,
68
+ sdkVersion : "0.2.4 " ,
69
69
genVersion : "2.610.0" ,
70
70
userAgent :
71
- "speakeasy-sdk/typescript 0.2.3 2.610.0 2.0 @launchdarkly/mcp-server" ,
71
+ "speakeasy-sdk/typescript 0.2.4 2.610.0 2.0 @launchdarkly/mcp-server" ,
72
72
} as const ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
export const app = buildApplication ( routes , {
20
20
name : "mcp" ,
21
21
versionInfo : {
22
- currentVersion : "0.2.3 " ,
22
+ currentVersion : "0.2.4 " ,
23
23
} ,
24
24
} ) ;
25
25
You can’t perform that action at this time.
0 commit comments