hubspot-generate-feedback-link
Submit feedback to improve HubSpot MCP tools when tasks aren’t resolved effectively or dissatisfaction arises. Help enhance future tool iterations.
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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {},
"type": "object"
}
Implementation Reference
- The process method implements the core logic of the 'hubspot-generate-feedback-link' tool, generating a message with a feedback URL for HubSpot MCP tools.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 input schema (empty object for no inputs) and full tool definition including name, description, input schema, and annotations.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 the FeedbackLinkTool instance, making the 'hubspot-generate-feedback-link' tool available in the MCP tools registry.registerTool(new FeedbackLinkTool());