create_provider
Create a new provider by defining its name and description using the UseGrant MCP Server, ensuring proper setup for provider management in the platform.
Instructions
Create a new provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The description of the provider | |
name | Yes | The name of the provider |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "The description of the provider",
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"name": {
"description": "The name of the provider",
"maxLength": 50,
"minLength": 3,
"type": "string"
}
},
"required": [
"name",
"description"
],
"type": "object"
}