mcp-server-chatsum
by chatmcp
query_chat_messages
query chat messages with given parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | chat messages limit | |
room_names | No | chat room names | |
talker_names | No | talker names |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "chat messages limit",
"type": "number"
},
"room_names": {
"description": "chat room names",
"items": {
"description": "chat room name",
"type": "string"
},
"type": "array"
},
"talker_names": {
"description": "talker names",
"items": {
"description": "talker name",
"type": "string"
},
"type": "array"
}
},
"required": [],
"type": "object"
}