Send agent feedback
send_agent_feedback
Section titled “send_agent_feedback”Use this when you observe a ChalkSurf CLI, MCP, API, or documentation inconsistency while using agent tools.
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": [ "api_inconsistency", "documentation_issue", "missing_capability", "unexpected_behavior", "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" } }, "required": [ "message", "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"}