@taiga-ai/mcp-server 0.2.3-dev.197 → 0.2.3-dev.198

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
@@ -11,8 +11,6 @@ import { z } from "zod";
11
11
  function resolveFeatureFlags(env) {
12
12
  return Object.freeze({
13
13
  skills: false,
14
- deployments: true,
15
- monitoring: true,
16
14
  insights: env !== "prod",
17
15
  uiSparring: env !== "prod",
18
16
  flowStudio: env !== "prod",
@@ -21,9 +19,8 @@ function resolveFeatureFlags(env) {
21
19
  });
22
20
  }
23
21
  /**
24
- * Safe-default snapshot, resolved as `prod`: `deployments` and `monitoring` are
25
- * GA (on) while the still-gated release toggles (`insights`, `uiSparring`, `flowStudio`, `checklists`) are
26
- * off. Prefer
22
+ * Safe-default snapshot, resolved as `prod`: every still-gated release toggle
23
+ * is off. Prefer
27
24
  * {@link resolveFeatureFlags} with the app's real environment. Retained for
28
25
  * consumers that have no environment of their own — notably the published MCP
29
26
  * 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.197",
3
+ "version": "0.2.3-dev.198",
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",