@zuplo/cli 7.4.3 → 7.4.4

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.
@@ -1759,8 +1759,11 @@ export declare interface McpEntraOAuthInboundPolicyOptions {
1759
1759
  /**
1760
1760
  * Activates the MCP Gateway internal routes (OAuth authorization server,
1761
1761
  * upstream connection management, well-known metadata) on the runtime router.
1762
- * When no MCP-related policy is present the plugin registers no routes; it
1763
- * still records `plugin.mcp-gateway` feature usage on construction so gateway
1762
+ * It also serves a read-only MCP Server Registry API (v0.1) advertising the
1763
+ * gateway's MCP routes — mounted at `/__zuplo/mcp-registry` by default and
1764
+ * configurable or disableable via the `registry` option. When no MCP-related
1765
+ * policy is present the plugin registers no OAuth routes; it still records
1766
+ * `plugin.mcp-gateway` feature usage on construction so gateway
1764
1767
  * adoption is visible in telemetry regardless of route configuration.
1765
1768
  *
1766
1769
  * Importing from `@zuplo/runtime/mcp-gateway` is the opt-in: the runtime core
@@ -1811,6 +1814,40 @@ export declare interface McpGatewayPluginOptions {
1811
1814
  * @default "/__zuplo"
1812
1815
  */
1813
1816
  basePath?: string;
1817
+ /**
1818
+ * Configures the read-only MCP Server Registry API. Enabled by default;
1819
+ * pass `{ enabled: false }` to turn it off.
1820
+ */
1821
+ registry?: McpGatewayRegistryOptions;
1822
+ }
1823
+
1824
+ /**
1825
+ * Options for the MCP Server Registry API served by the gateway.
1826
+ *
1827
+ * The registry is a read-only MCP Server Registry (v0.1) that advertises the
1828
+ * gateway's own MCP routes, so MCP clients and subregistries can discover
1829
+ * them. Discovery endpoints are unauthenticated per the registry
1830
+ * specification; publishing endpoints respond `501`.
1831
+ *
1832
+ * @beta
1833
+ */
1834
+ export declare interface McpGatewayRegistryOptions {
1835
+ /**
1836
+ * Set to `false` to disable the registry entirely. No registry routes are
1837
+ * registered when disabled.
1838
+ *
1839
+ * @default true
1840
+ */
1841
+ enabled?: boolean;
1842
+ /**
1843
+ * Absolute URL path where the registry API mounts. The registry endpoints
1844
+ * live below this path (e.g. `{path}/v0.1/servers`). Defaults to
1845
+ * `/mcp-registry` under the configured `basePath`, so with the default
1846
+ * `basePath` the registry is served at `/__zuplo/mcp-registry`.
1847
+ *
1848
+ * @default "{basePath}/mcp-registry"
1849
+ */
1850
+ path?: string;
1814
1851
  }
1815
1852
 
1816
1853
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zuplo/runtime",
3
3
  "type": "module",
4
- "version": "7.4.3",
4
+ "version": "7.4.4",
5
5
  "repository": "https://github.com/zuplo/zuplo",
6
6
  "author": "Zuplo, Inc.",
7
7
  "exports": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/cli",
3
- "version": "7.4.3",
3
+ "version": "7.4.4",
4
4
  "repository": "https://github.com/zuplo/zuplo",
5
5
  "author": "Zuplo, Inc.",
6
6
  "type": "module",
@@ -28,10 +28,10 @@
28
28
  "@opentelemetry/api": "1.9.0",
29
29
  "@opentelemetry/api-logs": "0.220.0",
30
30
  "@swc/core": "1.10.18",
31
- "@zuplo/core": "7.4.3",
31
+ "@zuplo/core": "7.4.4",
32
32
  "@zuplo/editor": "1.0.31094607111",
33
- "@zuplo/openapi-tools": "7.4.3",
34
- "@zuplo/runtime": "7.4.3",
33
+ "@zuplo/openapi-tools": "7.4.4",
34
+ "@zuplo/runtime": "7.4.4",
35
35
  "chalk": "5.4.1",
36
36
  "chokidar": "3.5.3",
37
37
  "cookie": "1.0.2",
@@ -62,15 +62,15 @@
62
62
  "workerd": "1.20241230.0",
63
63
  "yargs": "17.7.2",
64
64
  "zod": "4.4.3",
65
- "@zuplo/graphql": "7.4.3",
66
- "@zuplo/otel": "7.4.3"
65
+ "@zuplo/graphql": "7.4.4",
66
+ "@zuplo/otel": "7.4.4"
67
67
  },
68
68
  "optionalDependencies": {
69
- "@zuplo/lint-darwin-arm64": "7.4.3",
70
- "@zuplo/lint-darwin-x64": "7.4.3",
71
- "@zuplo/lint-linux-x64": "7.4.3",
72
- "@zuplo/lint-linux-arm64": "7.4.3",
73
- "@zuplo/lint-win32-x64": "7.4.3"
69
+ "@zuplo/lint-darwin-arm64": "7.4.4",
70
+ "@zuplo/lint-darwin-x64": "7.4.4",
71
+ "@zuplo/lint-linux-x64": "7.4.4",
72
+ "@zuplo/lint-linux-arm64": "7.4.4",
73
+ "@zuplo/lint-win32-x64": "7.4.4"
74
74
  },
75
75
  "bundleDependencies": [
76
76
  "@inquirer/prompts",