neuron_bot_api_get_messages
ActiveTool of io.github.conquext/neuron
declared in 1.0.0
Retrieve message history for a specific conversation with cursor-based pagination. Requires a valid API key.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"apiKey",
"conversationId"
],
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of messages to return (default: 50)",
"exclusiveMinimum": 0
},
"apiKey": {
"type": "string",
"description": "Bot API key with 'nrn_' prefix for authentication"
},
"before": {
"type": "string",
"description": "Cursor for pagination — retrieve messages created before this message ID or ISO 8601 timestamp"
},
"conversationId": {
"type": "string",
"description": "Unique identifier (UUID) of the conversation to retrieve messages from"
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
1/7 registries