Redmine MCP Server

update_user

Modify user account details, including admin privileges, authentication mode, and email preferences, using the Redmine MCP Server. Requires admin access and user ID to update information securely.

Instructions

Update an existing user. Admin privileges required. Returns success or validation error status. Available since Redmine 1.1

Input Schema

NameRequiredDescriptionDefault
adminNoGrant admin privileges
auth_source_idNoAuthentication mode ID
firstnameNoUser first name
idYesID of user to update
lastnameNoUser last name
loginNoUser login name
mailNoUser email address
mail_notificationNoEmail notification preferences
must_change_passwdNoForce password change at next login
passwordNoNew password

Input Schema (JSON Schema)

{ "properties": { "admin": { "description": "Grant admin privileges", "type": "boolean" }, "auth_source_id": { "description": "Authentication mode ID", "type": "number" }, "firstname": { "description": "User first name", "type": "string" }, "id": { "description": "ID of user to update", "type": "number" }, "lastname": { "description": "User last name", "type": "string" }, "login": { "description": "User login name", "type": "string" }, "mail": { "description": "User email address", "format": "email", "type": "string" }, "mail_notification": { "description": "Email notification preferences", "enum": [ "all", "selected", "only_my_events", "only_assigned", "only_owner", "none" ], "type": "string" }, "must_change_passwd": { "description": "Force password change at next login", "type": "boolean" }, "password": { "description": "New password", "type": "string" } }, "required": [ "id" ], "type": "object" }
ID: 55eg9u36cg