MCP Journaling Server
by mtct
record_interaction
Record both the user's message and assistant's response.
Args: user_message: The user's message assistant_message: The assistant's response
Returns: str: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_message | Yes | ||
user_message | Yes |
Input Schema (JSON Schema)
{
"properties": {
"assistant_message": {
"title": "Assistant Message",
"type": "string"
},
"user_message": {
"title": "User Message",
"type": "string"
}
},
"required": [
"user_message",
"assistant_message"
],
"title": "record_interactionArguments",
"type": "object"
}