add_domain
Add a domain to a specified provider in the UseGrant MCP Server, ensuring proper domain management within the platform.
Instructions
Add a domain to a provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | The domain of the domain | |
providerId | Yes | The 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"
}