fix: updating cursor plugin manifest, adding ai configs to the mcp config (#39)

updating cursor plugin manifest, adding ai configs to the mcp config
This commit is contained in:
Ramon Niebla
2026-04-09 17:07:30 -07:00
committed by GitHub
parent 4fdba429af
commit 8d3e715aeb
2 changed files with 14 additions and 3 deletions
+8 -2
View File
@@ -1,6 +1,6 @@
{
"name": "launchdarkly",
"version": "1.0.1",
"version": "1.0.2",
"description": "LaunchDarkly agent skills and mcp server for feature flag management, AI configuration, and skill authoring",
"author": {
"name": "LaunchDarkly",
@@ -19,5 +19,11 @@
"rollout",
"cleanup",
"mcp"
]
],
"skills": [
"skills/ai-configs",
"skills/feature-flags",
"skills/metrics"
],
"mcpServers": ".mcp.json"
}
+6 -1
View File
@@ -1,9 +1,14 @@
{
"mcpServers": {
"LaunchDarkly": {
"LaunchDarkly Feature Management": {
"type": "http",
"url": "https://mcp.launchdarkly.com/mcp/fm",
"headers": {}
},
"LaunchDarkly AI Configs": {
"type": "http",
"url": "https://mcp.launchdarkly.com/mcp/aiconfigs",
"headers": {}
}
}
}