MCPcopy Create free account
hub / github.com/modelcontextprotocol/mcpb / promptLongDescription

Function promptLongDescription

src/cli/init.ts:385–400  ·  view source on GitHub ↗
(description: string)

Source from the content-addressed store, hash-verified

383}
384
385export async function promptLongDescription(description: string) {
386 const hasLongDescription = await confirm({
387 message: "Add a detailed long description?",
388 default: false,
389 });
390
391 if (hasLongDescription) {
392 const longDescription = await input({
393 message: "Long description (supports basic markdown):",
394 default: description,
395 });
396 return longDescription;
397 }
398
399 return undefined;
400}
401
402export async function promptUrls() {
403 const homepage = await input({

Callers 1

initExtensionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…