@studiosolid/shopware-mcp
Version:
A local Model Context Protocol (MCP) server for Shopware plugin development
23 lines (20 loc) • 861 B
JavaScript
export default {
name: 'ask-for-relevant-information',
description: 'Gather relevant information about required paths and repositories for properly executing further instructions',
paramsSchema: {},
cb: () => {
return {
content: [
{
type: 'text',
text: `
To be able to create a local environment in the correct path in which the bug can be reproduced, we need to know following information from the user:
1. Path which should serve as project root (a subfolder for the project will be created automatically)
2. 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.
`,
},
]
};
},
};