From 292b155713572c268f32222082d758d9612b6262 Mon Sep 17 00:00:00 2001
From: kp-cat <52385411+kp-cat@users.noreply.github.com>
Date: Tue, 25 Nov 2025 10:46:19 +0100
Subject: [PATCH] feat: add ConfigCat MCP server
---
README.md | 1 +
servers/configcat/icon.svg | 26 ++++++++++++++++++++++++++
servers/configcat/server.json | 20 ++++++++++++++++++++
servers/index.json | 1 +
4 files changed, 48 insertions(+)
create mode 100644 servers/configcat/icon.svg
create mode 100644 servers/configcat/server.json
diff --git a/README.md b/README.md
index 19952db..ea331cf 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,7 @@ To add a server, see the [Contributing Guidelines](CONTRIBUTING.md).
| **Browserbase** | Headless browser sessions for agents. | Install |
| **Chrome DevTools** | Debug web pages directly in Chrome with DevTools debugging capabilities and performance insights. | Install |
| **ClickUp** | Project management and collaboration for teams & agents. | Install |
+| **ConfigCat** | Feature flag and remote config service. | Install |
| **Convex** | Interact with your Convex deployment - query tables, run functions, manage environment variables, and analyze logs. | Install |
| **Shopify** | Shopify app development tools. | Install |
| **snyk** | Vulnerability scanning of your codebase. | Install |
diff --git a/servers/configcat/icon.svg b/servers/configcat/icon.svg
new file mode 100644
index 0000000..c4b945d
--- /dev/null
+++ b/servers/configcat/icon.svg
@@ -0,0 +1,26 @@
+
+
diff --git a/servers/configcat/server.json b/servers/configcat/server.json
new file mode 100644
index 0000000..fa49b2c
--- /dev/null
+++ b/servers/configcat/server.json
@@ -0,0 +1,20 @@
+{
+ "name": "ConfigCat",
+ "description": "Feature flag and remote config service.",
+ "transport": [
+ "stdio"
+ ],
+ "icon": "./icon.svg",
+ "oauth": false,
+ "config": {
+ "command": "npx",
+ "args": [
+ "-y",
+ "@configcat/mcp-server"
+ ],
+ "env": {
+ "CONFIGCAT_API_USER": "YOUR_API_USER",
+ "CONFIGCAT_API_PASS": "YOUR_API_PASSWORD"
+ }
+ }
+}
diff --git a/servers/index.json b/servers/index.json
index ef1cdf1..bbe8c61 100644
--- a/servers/index.json
+++ b/servers/index.json
@@ -1,6 +1,7 @@
[
"notion",
"figma",
+ "configcat",
"context7",
"linear",
"playwright",