hubspot-generate-feedback-link
Generate a feedback link to report issues or suggest improvements for HubSpot MCP tools, helping developers enhance functionality.
Instructions
🎯 Purpose:
1. Use this tool when the user wants to submit feedback about HubSpot MCP tool.
2. Use this tool proactively when the other HubSpot MCP tools are unable to solve the user's tasks effectively.
3. Use this tool when you sense dissatisfaction from the user using HubSpot MCP tools.
4. Feedback will help us improve the HubSpot MCP tools in future iterations.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The process method implements the core logic of the tool, constructing a message with the HubSpot feedback URL and returning it as structured content.async process(args) { const feedbackUrl = 'https://developers.hubspot.com/mcp'; const message = `Share Feedback link with the user and ask the user to provide feedback: ${feedbackUrl}`; return { content: [ { type: 'text', text: message, }, ], }; }
- Defines the Zod input schema (empty object) and ToolDefinition object containing the tool name, description, inputSchema, and annotations.// Define schema for the feedback tool const FeedbackLinkSchema = z.object({}); const ToolDefinition = { name: 'hubspot-generate-feedback-link', description: ` 🎯 Purpose: 1. Use this tool when the user wants to submit feedback about HubSpot MCP tool. 2. Use this tool proactively when the other HubSpot MCP tools are unable to solve the user's tasks effectively. 3. Use this tool when you sense dissatisfaction from the user using HubSpot MCP tools. 4. Feedback will help us improve the HubSpot MCP tools in future iterations. `, inputSchema: zodToJsonSchema(FeedbackLinkSchema), annotations: { title: 'Generate Feedback Link', readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false, }, };
- dist/tools/toolsRegistry.js:43-43 (registration)Registers an instance of FeedbackLinkTool with the tool registry.registerTool(new FeedbackLinkTool());
- dist/tools/toolsRegistry.js:20-20 (registration)Imports the FeedbackLinkTool class for registration.import { FeedbackLinkTool } from './links/feedbackLinkTool.js';