Send user feedback
send_user_feedback
Section titled “send_user_feedback”Use this only after the user explicitly asks you to send feedback or agrees to send a bug report or feature request.
Contract metadata
Section titled “Contract metadata”{ "annotations": { "readOnlyHint": false, "destructiveHint": false, "idempotentHint": false, "openWorldHint": false }, "fileParams": [], "requiredPermission": "read", "security": { "type": "oauth2", "scopes": [ "chalksurf:read" ] }}Input schema
Section titled “Input schema”The server advertises this JSON Schema to MCP clients. Runtime authorization and business-rule checks still apply.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "category": { "enum": [ "bug_report", "feature_request", "frustration", "blocked_request", "other" ], "type": "string" }, "context": { "additionalProperties": {}, "properties": {}, "type": "object" }, "message": { "maxLength": 5000, "minLength": 1, "type": "string" }, "organizationId": { "description": "The ChalkSurf organization ID to use for this request.", "format": "uuid", "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$", "type": "string" }, "userConsent": { "const": true, "type": "boolean" } }, "required": [ "message", "userConsent", "organizationId" ], "type": "object"}Output schema
Section titled “Output schema”{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "receipt": { "additionalProperties": false, "properties": { "eventId": { "format": "uuid", "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$", "type": "string" }, "eventType": { "enum": [ "user_feedback_sent", "agent_feedback_sent" ], "type": "string" }, "submittedAt": { "type": "string" } }, "required": [ "eventId", "eventType", "submittedAt" ], "type": "object" } }, "required": [ "receipt" ], "type": "object"}