launchdarkly/mcp-server
If you are the rightful owner of mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
LaunchDarkly's Model Context Protocol (MCP) Server is an official server implementation for managing feature flags and AI configurations using the MCP protocol.
LaunchDarkly's Model Context Protocol (MCP) Server is designed to facilitate the management of feature flags and AI configurations through a standardized protocol. This server allows developers to integrate feature flagging capabilities into their applications seamlessly, providing a robust platform for continuous delivery and feature management. By leveraging the MCP protocol, the server ensures compatibility with various AI clients, enabling developers to control feature rollouts, conduct A/B testing, and manage user access to features based on specific attributes. The server supports multiple environments, including commercial, federal, and EU, ensuring compliance with regional requirements. With a focus on ease of installation and configuration, the MCP server can be deployed as a standalone binary or integrated into existing development environments using popular tools like Cursor, Claude, and Qodo Gen.
Features
- Seamless integration with AI clients supporting the MCP protocol.
- Support for multiple environments, including commercial, federal, and EU.
- Ability to manage feature flags and AI configurations programmatically.
- Compatibility with various development tools for easy installation and configuration.
- Robust platform for continuous delivery and feature management.
Usages
Cursor installation steps
{ "mcpServers": { "LaunchDarkly": { "command": "npx", "args": [ "-y", "--package", "@launchdarkly/mcp-server", "--", "mcp", "start", "--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ] } } }
Claude installation steps
{ "mcpServers": { "LaunchDarkly": { "command": "npx", "args": [ "-y", "--package", "@launchdarkly/mcp-server", "--", "mcp", "start", "--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ] } } }
Qodo Gen installation steps
{ "mcpServers": { "LaunchDarkly": { "command": "npx", "args": [ "-y", "--package", "@launchdarkly/mcp-server", "--", "mcp", "start", "--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ] } } }
Standalone binary installation steps
bash curl -L -o mcp-server https://github.com/launchdarkly/mcp-server/releases/download/{tag}/mcp-server-bun-darwin-arm64 && \ chmod +x mcp-server
Installation steps from a local clone
{ "mcpServers": { "launchdarkly": { "command": "node", "args": [ "/path/to/mcp-server/bin/mcp-server.js", "start", "--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ] } } }