neuron_bulk_toggle_builtin_tools
ActiveTool of io.github.conquext/neuron
declared in 1.0.0
Enable or disable multiple built-in tools at once for a bot. More efficient than toggling tools individually.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"botId",
"settings"
],
"properties": {
"botId": {
"type": "string",
"description": "Unique identifier (UUID) of the bot to update tools for"
},
"settings": {
"type": "array",
"items": {
"type": "object",
"required": [
"toolId",
"enabled"
],
"properties": {
"toolId": {
"type": "string",
"description": "Identifier of the built-in tool (e.g., 'web_search', 'send_direct_message')"
},
"enabled": {
"type": "boolean",
"description": "Whether to enable (true) or disable (false) this tool"
}
},
"additionalProperties": false
},
"description": "Array of tool toggle settings to apply in bulk"
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
1/7 registries