Skip to content

Commit ba1a2f5

Browse files
committed
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
1 parent 0217546 commit ba1a2f5

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

servers/com.launchdarkly-mcp.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.launchdarkly-mcp",
4+
"name": "LaunchDarkly",
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": ["developer-tools"],
10+
"tags": ["launchdarkly", "feature-flags", "toggles", "experimentation", "rollouts"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@launchdarkly/mcp-server", "mcp", "start", "--api-key", "${input:LD_ACCESS_TOKEN}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "LD_ACCESS_TOKEN",
20+
"label": "LaunchDarkly Access Token",
21+
"description": "LaunchDarkly API access token with appropriate permissions.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://app.launchdarkly.com/settings/authorization",
28+
"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",
29+
"button_label": "Create Token"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Create an access token at https://app.launchdarkly.com/settings/authorization"
39+
},
40+
41+
"contributor": {
42+
"name": "LaunchDarkly",
43+
"github": "launchdarkly",
44+
"url": "https://launchdarkly.com"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/launchdarkly/mcp-server",
49+
"homepage": "https://launchdarkly.com",
50+
"documentation": "https://docs.launchdarkly.com"
51+
},
52+
53+
"platforms": ["all"],
54+
55+
"capabilities": {
56+
"tools": true,
57+
"resources": false,
58+
"prompts": false,
59+
"read_only_mode": false
60+
}
61+
}

0 commit comments

Comments
 (0)