@clipform/mcp-server 1.44.1 → 1.44.2
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/README.md +0 -7
- package/dist/{chunk-VW2HF4TZ.js → chunk-MIH452WS.js} +3 -3
- package/dist/{chunk-VW2HF4TZ.js.map → chunk-MIH452WS.js.map} +1 -1
- package/dist/{chunk-T6B4O3O7.js → chunk-VTRO7ZC3.js} +32 -28
- package/dist/{chunk-T6B4O3O7.js.map → chunk-VTRO7ZC3.js.map} +1 -1
- package/dist/index.js +2 -2
- package/dist/prompts.js +1 -1
- package/dist/server.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
<!-- GENERATED from README.template.md by scripts/sync-mcp-server-readme.mjs - do not edit directly. -->
|
|
2
|
-
<!--
|
|
3
|
-
GENERATED FILE SOURCE TEMPLATE.
|
|
4
|
-
README.md is generated from this template by scripts/sync-mcp-server-readme.mjs.
|
|
5
|
-
Edit prose HERE, never in README.md. URLs/package come from @vid-master/config;
|
|
6
|
-
the tool list is generated from the live server (createServer()._registeredTools),
|
|
7
|
-
so adding/removing a tool updates the README automatically - never hand-list tools.
|
|
8
|
-
-->
|
|
9
2
|
# @clipform/mcp-server
|
|
10
3
|
|
|
11
4
|
MCP server for [Clipform](https://clipform.io) - build and manage video-style forms from any MCP client (Claude, ChatGPT, Cursor, Windsurf, etc.).
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
getWorkflowText,
|
|
7
7
|
objectType,
|
|
8
8
|
registerPrompts
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-VTRO7ZC3.js";
|
|
10
10
|
import {
|
|
11
11
|
GUIDE_TYPES,
|
|
12
12
|
QUIZ_VARIANTS,
|
|
@@ -17430,7 +17430,7 @@ function registerUpdateFormTool(server) {
|
|
|
17430
17430
|
inputSchema: {
|
|
17431
17431
|
form_id: external_exports.string().uuid().describe("The form UUID (returned by clipform_create_form, not the short share_id from the URL)"),
|
|
17432
17432
|
title: external_exports.string().optional().describe("New form title"),
|
|
17433
|
-
is_live: external_exports.boolean().optional().describe("
|
|
17433
|
+
is_live: external_exports.boolean().optional().describe("Setting true publishes/republishes the snapshot respondents see. Forms are live from creation, but edits and media attached AFTER creation are not visible until you re-send true - republishing is the expected final step of a build, never skip it after attaching media. Setting false takes the form offline (keeps the last published snapshot) - AI-PROTECTED: only take a form offline when the user explicitly asks."),
|
|
17434
17434
|
show_step_counter: external_exports.boolean().optional().describe("Show step counter (e.g. '1/5'). Recommended for quizzes."),
|
|
17435
17435
|
disable_back_navigation: external_exports.boolean().optional().describe("Prevent respondents from going back. Recommended for quizzes."),
|
|
17436
17436
|
total_steps: external_exports.number().nullable().optional().describe("Override the total step count shown in the step counter. Set null to auto-calculate."),
|
|
@@ -18970,4 +18970,4 @@ export {
|
|
|
18970
18970
|
JSONRPCMessageSchema,
|
|
18971
18971
|
createServer
|
|
18972
18972
|
};
|
|
18973
|
-
//# sourceMappingURL=chunk-
|
|
18973
|
+
//# sourceMappingURL=chunk-MIH452WS.js.map
|