@taiga-ai/mcp-server 0.2.3-dev.136 → 0.2.3-dev.139

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -12,13 +12,14 @@ function resolveFeatureFlags(env) {
12
12
  return Object.freeze({
13
13
  skills: false,
14
14
  deployments: true,
15
- monitoring: env !== "prod",
16
- insights: env !== "prod"
15
+ monitoring: true,
16
+ insights: env !== "prod",
17
+ uiSparring: env !== "prod"
17
18
  });
18
19
  }
19
20
  /**
20
- * Safe-default snapshot, resolved as `prod`: `deployments` is GA (on) while the
21
- * still-gated release toggles (`monitoring`, `insights`) are off. Prefer
21
+ * Safe-default snapshot, resolved as `prod`: `deployments` and `monitoring` are
22
+ * GA (on) while the still-gated release toggle (`insights`) is off. Prefer
22
23
  * {@link resolveFeatureFlags} with the app's real environment. Retained for
23
24
  * consumers that have no environment of their own — notably the published MCP
24
25
  * server — so an unconfigured runtime never leaks a work-in-progress feature.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ai/mcp-server",
3
- "version": "0.2.3-dev.136",
3
+ "version": "0.2.3-dev.139",
4
4
  "description": "MCP server for Taiga -- gives AI assistants access to documents, skills, and projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",