Skip to content

Commit 1711f38

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for LD_ACCESS_TOKEN)
1 parent ee0c9fc commit 1711f38

1 file changed

Lines changed: 22 additions & 11 deletions

File tree

servers/com.launchdarkly-mcp.json

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,34 @@
66
"description": "Manage LaunchDarkly feature flags, environments, and projects. Create, toggle, and configure feature flags with targeting rules.",
77
"icon": "https://avatars.githubusercontent.com/u/8039656?v=4",
88
"schema_version": "2.1",
9-
"categories": ["developer-tools"],
10-
"tags": ["launchdarkly", "feature-flags", "toggles", "experimentation", "rollouts"],
11-
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"launchdarkly",
14+
"feature-flags",
15+
"toggles",
16+
"experimentation",
17+
"rollouts"
18+
],
1219
"transport": {
1320
"type": "stdio",
1421
"command": "npx",
15-
"args": ["-y", "@launchdarkly/mcp-server", "mcp", "start", "--api-key", "${input:LD_ACCESS_TOKEN}"],
22+
"args": [
23+
"-y",
24+
"@launchdarkly/mcp-server",
25+
"mcp",
26+
"start",
27+
"--api-key",
28+
"${input:LD_ACCESS_TOKEN}"
29+
],
1630
"metadata": {
1731
"inputs": [
1832
{
1933
"id": "LD_ACCESS_TOKEN",
2034
"label": "LaunchDarkly Access Token",
2135
"description": "LaunchDarkly API access token with appropriate permissions.",
22-
"type": "password",
36+
"type": "text",
2337
"required": true,
2438
"secret": true,
2539
"placeholder": "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
@@ -32,26 +46,23 @@
3246
]
3347
}
3448
},
35-
3649
"auth": {
3750
"type": "api_key",
3851
"instructions": "Create an access token at https://app.launchdarkly.com/settings/authorization"
3952
},
40-
4153
"contributor": {
4254
"name": "LaunchDarkly",
4355
"github": "launchdarkly",
4456
"url": "https://launchdarkly.com"
4557
},
46-
4758
"links": {
4859
"repository": "https://github.com/launchdarkly/mcp-server",
4960
"homepage": "https://launchdarkly.com",
5061
"documentation": "https://docs.launchdarkly.com"
5162
},
52-
53-
"platforms": ["all"],
54-
63+
"platforms": [
64+
"all"
65+
],
5566
"capabilities": {
5667
"tools": true,
5768
"resources": false,

0 commit comments

Comments
 (0)