@studiosolid/shopware-mcp
Version:
A local Model Context Protocol (MCP) server for Shopware plugin development
24 lines (20 loc) • 958 B
JavaScript
export default {
name: 'ask-for-plugin-repository',
description: 'Ask the user for the URL to the git repository of the affected plugin',
paramsSchema: {},
cb: () => {
return {
content: [
{
type: 'text',
text: `
This tool should only be used as part of a running Shopware plugin bugfix process with a support ticket number. It should not be used on its own.
To be able to install and activate the affected plugin in the local development environment, we need to ask the user for following information:
- URL to the git repository of the affected plugin
Stop generating output and wait for a new prompt with the needed information from the user. If you run into issue interpreting the user's response, ask the user to provide the information again.
`,
},
]
};
},
};