add_user
Create and manage new users on the MCP Test Server by specifying name, email, and role. Simplify user administration with this tool.
Instructions
添加新用户
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | 邮箱地址 | ||
name | Yes | 用户姓名 | |
role | No | 用户角色 | user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "邮箱地址",
"type": "string"
},
"name": {
"description": "用户姓名",
"type": "string"
},
"role": {
"default": "user",
"description": "用户角色",
"enum": [
"admin",
"user"
],
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
}