UseGrant MCP Server

Official

add_domain

Add a domain to a provider

Input Schema

NameRequiredDescriptionDefault
domainYesThe domain of the domain
providerIdYesThe ID of the provider

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "domain": { "description": "The domain of the domain", "type": "string" }, "providerId": { "description": "The ID of the provider", "minLength": 1, "type": "string" } }, "required": [ "providerId", "domain" ], "type": "object" }