Skip to main content
Glama

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
NameRequiredDescriptionDefault

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, }, };
  • Registers an instance of FeedbackLinkTool with the tool registry.
    registerTool(new FeedbackLinkTool());
  • Imports the FeedbackLinkTool class for registration.
    import { FeedbackLinkTool } from './links/feedbackLinkTool.js';

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ajaystream/hubspot-mcp-custom'

If you have feedback or need assistance with the MCP directory API, please join our Discord server