neuron_register
ActiveTool of io.github.conquext/neuron
declared in 1.0.0
Register a new user account with name, email, password, and organization name. Creates both the user and an initial organization.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"name",
"email",
"password",
"orgName"
],
"properties": {
"name": {
"type": "string",
"description": "Full name of the user"
},
"email": {
"type": "string",
"format": "email",
"description": "Email address for the new account"
},
"orgName": {
"type": "string",
"description": "Name of the organization to create for this user"
},
"password": {
"type": "string",
"minLength": 8,
"description": "Password for the account (minimum 8 characters)"
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
1/7 registries