@sentientui/mcp 0.6.1 → 0.8.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/{chunk-OQ2K3O7A.js → chunk-E34O3H2Z.js} +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/lib.cjs +2 -2
- package/dist/lib.js +1 -1
- package/package.json +1 -1
|
@@ -77,8 +77,8 @@ function registerProjectTools(server, client) {
|
|
|
77
77
|
description: "Create a NEW SentientUI project (onboarding). Returns the project id and its pk_ public key for the SDK. Requires an account login: this works when connected via OAuth (the hosted MCP URL) but NOT with a project-scoped sk_ server key or an anonymous demo token. After it succeeds, call get_integration_guide and help the user install @sentientui/react with the returned key.",
|
|
78
78
|
inputSchema: {
|
|
79
79
|
name: z.string().min(1).describe("Human-readable project name"),
|
|
80
|
-
contextType: z.enum(["saas", "ecommerce", "marketing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
81
|
-
framework: z.enum(["next
|
|
80
|
+
contextType: z.enum(["saas", "ecommerce", "marketing", "landing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
81
|
+
framework: z.enum(["next", "react", "core"]).optional().describe("How the site is built \u2014 next, react, or core (website builder/CMS); defaults to next"),
|
|
82
82
|
websiteUrl: z.string().optional().describe("Production site origin to allow-list so the SDK's events aren't origin-blocked on day one")
|
|
83
83
|
},
|
|
84
84
|
outputSchema: {
|
package/dist/index.cjs
CHANGED
|
@@ -85,8 +85,8 @@ function registerProjectTools(server, client) {
|
|
|
85
85
|
description: "Create a NEW SentientUI project (onboarding). Returns the project id and its pk_ public key for the SDK. Requires an account login: this works when connected via OAuth (the hosted MCP URL) but NOT with a project-scoped sk_ server key or an anonymous demo token. After it succeeds, call get_integration_guide and help the user install @sentientui/react with the returned key.",
|
|
86
86
|
inputSchema: {
|
|
87
87
|
name: import_zod.z.string().min(1).describe("Human-readable project name"),
|
|
88
|
-
contextType: import_zod.z.enum(["saas", "ecommerce", "marketing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
89
|
-
framework: import_zod.z.enum(["next
|
|
88
|
+
contextType: import_zod.z.enum(["saas", "ecommerce", "marketing", "landing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
89
|
+
framework: import_zod.z.enum(["next", "react", "core"]).optional().describe("How the site is built \u2014 next, react, or core (website builder/CMS); defaults to next"),
|
|
90
90
|
websiteUrl: import_zod.z.string().optional().describe("Production site origin to allow-list so the SDK's events aren't origin-blocked on day one")
|
|
91
91
|
},
|
|
92
92
|
outputSchema: {
|
package/dist/index.js
CHANGED
package/dist/lib.cjs
CHANGED
|
@@ -110,8 +110,8 @@ function registerProjectTools(server, client) {
|
|
|
110
110
|
description: "Create a NEW SentientUI project (onboarding). Returns the project id and its pk_ public key for the SDK. Requires an account login: this works when connected via OAuth (the hosted MCP URL) but NOT with a project-scoped sk_ server key or an anonymous demo token. After it succeeds, call get_integration_guide and help the user install @sentientui/react with the returned key.",
|
|
111
111
|
inputSchema: {
|
|
112
112
|
name: import_zod.z.string().min(1).describe("Human-readable project name"),
|
|
113
|
-
contextType: import_zod.z.enum(["saas", "ecommerce", "marketing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
114
|
-
framework: import_zod.z.enum(["next
|
|
113
|
+
contextType: import_zod.z.enum(["saas", "ecommerce", "marketing", "landing", "internal"]).optional().describe("What kind of product this is; defaults to saas"),
|
|
114
|
+
framework: import_zod.z.enum(["next", "react", "core"]).optional().describe("How the site is built \u2014 next, react, or core (website builder/CMS); defaults to next"),
|
|
115
115
|
websiteUrl: import_zod.z.string().optional().describe("Production site origin to allow-list so the SDK's events aren't origin-blocked on day one")
|
|
116
116
|
},
|
|
117
117
|
outputSchema: {
|
package/dist/lib.js
CHANGED