Skip to main content
Glama

record_feedback

Collect feedback on prompt enhancement techniques to improve future responses by tracking helpfulness of applied methods.

Instructions

Record whether an enhancement was helpful.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
techniqueYesTechnique ID
helpfulYesWas it helpful?
promptNoThe original prompt (for context)

Implementation Reference

  • The handler for the 'record_feedback' tool, which uses `recordDecision` to store the feedback.
    case 'record_feedback': {
      const { technique, helpful, prompt = '' } = args;
      recordDecision({ prompt, technique, accepted: true, helpful });
      return { recorded: true };
    }
  • The schema definition for the 'record_feedback' tool in the tool list response.
      name: 'record_feedback',
      description: 'Record whether an enhancement was helpful.',
      inputSchema: {
        type: 'object',
        properties: {
          technique: { type: 'string', description: 'Technique ID' },
          helpful: { type: 'boolean', description: 'Was it helpful?' },
          prompt: { type: 'string', description: 'The original prompt (for context)' },
        },
        required: ['technique', 'helpful'],
      },
    },

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/AlanRoybal/prompte-mcp'

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