@syntrologie/adapt-mcp 2.27.0 → 2.29.0

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/schema.d.ts CHANGED
@@ -10,9 +10,16 @@ export declare const mcpAdaptiveConfigSchema: z.ZodObject<{}, "strict", z.ZodTyp
10
10
  export type MCPAdaptiveConfig = z.infer<typeof mcpAdaptiveConfigSchema>;
11
11
  export declare const CAPABILITIES_DOCUMENTATION: {
12
12
  packageId: string;
13
+ plannerSummary: string;
13
14
  description: string;
14
- whenToUse: never[];
15
- conventions: never[];
15
+ whenToUse: {
16
+ goal: string;
17
+ action: string;
18
+ }[];
19
+ conventions: {
20
+ name: string;
21
+ description: string;
22
+ }[];
16
23
  events: never[];
17
24
  };
18
25
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,uBAAuB,iDAAwB,CAAC;AAE7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAMxE,eAAO,MAAM,0BAA0B;;;;;;CAOtC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,uBAAuB,iDAAwB,CAAC;AAE7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAMxE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;CAyBtC,CAAC"}
package/dist/schema.js CHANGED
@@ -3,9 +3,24 @@ import { z } from "zod";
3
3
  var mcpAdaptiveConfigSchema = z.object({}).strict();
4
4
  var CAPABILITIES_DOCUMENTATION = {
5
5
  packageId: "adaptive-mcp",
6
+ plannerSummary: "Loader for the MCP Apps protocol \u2014 no usable surfaces yet. Not a build target.",
6
7
  description: "Loader adaptive for the MCP Apps protocol. Currently a pure loader \u2014 no actions, widgets, or surfaces yet.",
7
- whenToUse: [],
8
- conventions: [],
8
+ whenToUse: [
9
+ {
10
+ goal: "Verify that the MCP Apps loader package is available",
11
+ action: "Use the adaptive-mcp package as loader infrastructure only. Do not select it for user-facing widgets or action plans until real MCP Apps surfaces are added."
12
+ }
13
+ ],
14
+ conventions: [
15
+ {
16
+ name: "Strict empty config",
17
+ description: "adaptive-mcp currently accepts only an empty config object. Unknown keys are rejected so future MCP Apps surfaces cannot accidentally ship without explicit schema, docs, and tests."
18
+ },
19
+ {
20
+ name: "No planner-visible surface yet",
21
+ description: "Treat adaptive-mcp as availability plumbing, not an adaptive experience. Future widgets or actions must add public surfaces, browser evidence, and capability docs before use."
22
+ }
23
+ ],
9
24
  events: []
10
25
  };
11
26
  export {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/schema.ts"],
4
- "sourcesContent": ["/**\n * Adaptive MCP - Schema\n *\n * No tile-config schema for this adaptive yet. It's a library loader, not a\n * configurable behavior. This export exists so the package's `./schema`\n * subpath resolves to a real module and stays symmetric with other adaptives.\n */\n\nimport { z } from 'zod';\n\nexport const mcpAdaptiveConfigSchema = z.object({}).strict();\n\nexport type MCPAdaptiveConfig = z.infer<typeof mcpAdaptiveConfigSchema>;\n\n// ============================================================================\n// Capabilities Documentation (injected into JSON Schema for LLM prompts)\n// ============================================================================\n\nexport const CAPABILITIES_DOCUMENTATION = {\n packageId: 'adaptive-mcp',\n description:\n 'Loader adaptive for the MCP Apps protocol. Currently a pure loader \u2014 no actions, widgets, or surfaces yet.',\n whenToUse: [],\n conventions: [],\n events: [],\n};\n"],
5
- "mappings": ";AAQA,SAAS,SAAS;AAEX,IAAM,0BAA0B,EAAE,OAAO,CAAC,CAAC,EAAE,OAAO;AAQpD,IAAM,6BAA6B;AAAA,EACxC,WAAW;AAAA,EACX,aACE;AAAA,EACF,WAAW,CAAC;AAAA,EACZ,aAAa,CAAC;AAAA,EACd,QAAQ,CAAC;AACX;",
4
+ "sourcesContent": ["/**\n * Adaptive MCP - Schema\n *\n * No tile-config schema for this adaptive yet. It's a library loader, not a\n * configurable behavior. This export exists so the package's `./schema`\n * subpath resolves to a real module and stays symmetric with other adaptives.\n */\n\nimport { z } from 'zod';\n\nexport const mcpAdaptiveConfigSchema = z.object({}).strict();\n\nexport type MCPAdaptiveConfig = z.infer<typeof mcpAdaptiveConfigSchema>;\n\n// ============================================================================\n// Capabilities Documentation (injected into JSON Schema for LLM prompts)\n// ============================================================================\n\nexport const CAPABILITIES_DOCUMENTATION = {\n packageId: 'adaptive-mcp',\n plannerSummary: 'Loader for the MCP Apps protocol \u2014 no usable surfaces yet. Not a build target.',\n description:\n 'Loader adaptive for the MCP Apps protocol. Currently a pure loader \u2014 no actions, widgets, or surfaces yet.',\n whenToUse: [\n {\n goal: 'Verify that the MCP Apps loader package is available',\n action:\n 'Use the adaptive-mcp package as loader infrastructure only. Do not select it for user-facing widgets or action plans until real MCP Apps surfaces are added.',\n },\n ],\n conventions: [\n {\n name: 'Strict empty config',\n description:\n 'adaptive-mcp currently accepts only an empty config object. Unknown keys are rejected so future MCP Apps surfaces cannot accidentally ship without explicit schema, docs, and tests.',\n },\n {\n name: 'No planner-visible surface yet',\n description:\n 'Treat adaptive-mcp as availability plumbing, not an adaptive experience. Future widgets or actions must add public surfaces, browser evidence, and capability docs before use.',\n },\n ],\n events: [],\n};\n"],
5
+ "mappings": ";AAQA,SAAS,SAAS;AAEX,IAAM,0BAA0B,EAAE,OAAO,CAAC,CAAC,EAAE,OAAO;AAQpD,IAAM,6BAA6B;AAAA,EACxC,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,aACE;AAAA,EACF,WAAW;AAAA,IACT;AAAA,MACE,MAAM;AAAA,MACN,QACE;AAAA,IACJ;AAAA,EACF;AAAA,EACA,aAAa;AAAA,IACX;AAAA,MACE,MAAM;AAAA,MACN,aACE;AAAA,IACJ;AAAA,IACA;AAAA,MACE,MAAM;AAAA,MACN,aACE;AAAA,IACJ;AAAA,EACF;AAAA,EACA,QAAQ,CAAC;AACX;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syntrologie/adapt-mcp",
3
- "version": "2.27.0",
3
+ "version": "2.29.0",
4
4
  "description": "Adaptive MCP — dynamically loads @modelcontextprotocol/ext-apps so interactive MCP app cards can bridge back to the host.",
5
5
  "license": "Proprietary",
6
6
  "private": false,