@clipform/mcp-server 2.5.0 → 2.5.1
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.
|
@@ -17293,10 +17293,12 @@ Example: A form that asks a question, collects contact info, then finishes:
|
|
|
17293
17293
|
isPreview ? `CLAIM URL (one-time - claim this account to publish): ${formUrl}` : `DASHBOARD URL (sign in to edit and manage): ${formUrl}`
|
|
17294
17294
|
);
|
|
17295
17295
|
}
|
|
17296
|
+
const firstUrlLabel = isPreview ? "PREVIEW" : "FORM";
|
|
17297
|
+
const secondUrlLabel = isPreview ? "CLAIM" : "DASHBOARD";
|
|
17296
17298
|
lines.push(
|
|
17297
17299
|
``,
|
|
17298
|
-
isPreview ? `This form is a preview - claim and publish to start collecting responses
|
|
17299
|
-
`The URLs above are exact values; constructed or guessed URLs return 404. Use the ${
|
|
17300
|
+
isPreview ? `This form is a preview - claim and publish to start collecting responses.${formUrl ? " Open the CLAIM URL to sign into the account this form already belongs to, then republish" : " Sign in to the account this form already belongs to and republish"} with clipform_update_form (is_live: true). The PREVIEW URL never becomes public on its own.` : `The form is live and accessible at the FORM URL above. Edits and media attached AFTER this point are NOT visible to respondents until you re-send is_live: true via clipform_update_form - republishing is the expected final step of a build, never skip it after attaching media/narration.`,
|
|
17301
|
+
formUrl ? `The URLs above are exact values; constructed or guessed URLs return 404. Use the ${firstUrlLabel} URL and ${secondUrlLabel} URL as shown.` : `The ${firstUrlLabel} URL above is an exact value; constructed or guessed URLs return 404.`,
|
|
17300
17302
|
`Pass form_id on follow-up tools (get_form, add_node, attach_node_media, etc.).`
|
|
17301
17303
|
);
|
|
17302
17304
|
if (planContext) {
|
|
@@ -20319,4 +20321,4 @@ export {
|
|
|
20319
20321
|
RENDER_TIMING,
|
|
20320
20322
|
createServer
|
|
20321
20323
|
};
|
|
20322
|
-
//# sourceMappingURL=chunk-
|
|
20324
|
+
//# sourceMappingURL=chunk-3GBZFAEM.js.map
|