Skip to content

Commit 310e2b7

Browse files
authored
feat: add LaunchDarkly MCP server definition (#49)
* Add LaunchDarkly MCP server definition Official LaunchDarkly MCP server for feature flag management. Create, toggle, and configure flags with targeting rules. Uses @launchdarkly/mcp-server. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for LD_ACCESS_TOKEN) * fix: rename server files with transport suffix - com.launchdarkly-mcp.json -> com.launchdarkly-mcp-npx.json (id: com.launchdarkly-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 7739fea commit 310e2b7

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.launchdarkly-mcp-npx",
4+
"name": "LaunchDarkly (npx)",
5+
"alias": "launchdarkly",
6+
"description": "Manage LaunchDarkly feature flags, environments, and projects. Create, toggle, and configure feature flags with targeting rules.",
7+
"icon": "https://avatars.githubusercontent.com/u/8039656?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"launchdarkly",
14+
"feature-flags",
15+
"toggles",
16+
"experimentation",
17+
"rollouts"
18+
],
19+
"transport": {
20+
"type": "stdio",
21+
"command": "npx",
22+
"args": [
23+
"-y",
24+
"@launchdarkly/mcp-server",
25+
"mcp",
26+
"start",
27+
"--api-key",
28+
"${input:LD_ACCESS_TOKEN}"
29+
],
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "LD_ACCESS_TOKEN",
34+
"label": "LaunchDarkly Access Token",
35+
"description": "LaunchDarkly API access token with appropriate permissions.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://app.launchdarkly.com/settings/authorization",
42+
"instructions": "1. Go to app.launchdarkly.com > Account settings > Authorization\n2. Click '+ Create token'\n3. Name your token and select the desired permissions\n4. Click 'Save token' and copy it",
43+
"button_label": "Create Token"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create an access token at https://app.launchdarkly.com/settings/authorization"
52+
},
53+
"contributor": {
54+
"name": "LaunchDarkly",
55+
"github": "launchdarkly",
56+
"url": "https://launchdarkly.com"
57+
},
58+
"links": {
59+
"repository": "https://github.com/launchdarkly/mcp-server",
60+
"homepage": "https://launchdarkly.com",
61+
"documentation": "https://docs.launchdarkly.com"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)