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
| Name | Required | Description | Default |
|---|---|---|---|
| technique | Yes | Technique ID | |
| helpful | Yes | Was it helpful? | |
| prompt | No | The original prompt (for context) |
Implementation Reference
- bin/prompte-mcp.js:205-209 (handler)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 }; } - bin/prompte-mcp.js:98-109 (schema)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'], }, },