UseGrant MCP Server

Official

create_tenant

Create a new tenant

Input Schema

NameRequiredDescriptionDefault
descriptionYesThe description of the tenant
nameYesThe name of the tenant

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "The description of the tenant", "maxLength": 100, "minLength": 1, "type": "string" }, "name": { "description": "The name of the tenant", "minLength": 3, "type": "string" } }, "required": [ "name", "description" ], "type": "object" }