configcat/mcp-server
Official ConfigCat Model Context Protocol (MCP) Server
Platform-specific configuration:
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
The ConfigCat's Model Context Protocol (MCP) server provides access to ConfigCat's public management API for feature flag and configuration management. It also enables your code editor to understand your feature flags, integrate the appropriate ConfigCat SDK into your project or even create new feature flags directly in your codebase.
You can use the following environment variables to configure the MCP server.
| Environment variable | Required | Default | Description | | -------------------- | -------- | ------- | ----------- | | CONFIGCAT_API_USER | ☑ | | ConfigCat Management API basic authentication username. | | CONFIGCAT_API_PASS | ☑ | | ConfigCat Management API basic authentication password. | | CONFIGCAT_BASE_URL | | https://api.configcat.com | ConfigCat Management API host. |
The instructions below shows how to connect a client to the MCP server.
Preferences -> Cursor Settings -> MCP & IntegrationsAdd Custom MCP{
"mcpServers": {
"ConfigCat": {
"command": "npx",
"args": ["-y", "@configcat/mcp-server"],
"env": {
"CONFIGCAT_API_USER": "YOUR_API_USER",
"CONFIGCAT_API_PASS": "YOUR_API_PASSWORD"
}
}
}
}Loading reviews...