create_client
Generate a new client for a provider by specifying client name, provider ID, and audience. Facilitates client management in the UseGrant MCP Server.
Instructions
Create a new client for a provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
audience | Yes | The audience of the client | |
name | Yes | The name of the client | |
providerId | Yes | The ID of the provider |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"audience": {
"description": "The audience of the client",
"maxLength": 100,
"minLength": 3,
"type": "string"
},
"name": {
"description": "The name of the client",
"maxLength": 50,
"minLength": 3,
"type": "string"
},
"providerId": {
"description": "The ID of the provider",
"minLength": 1,
"type": "string"
}
},
"required": [
"providerId",
"name",
"audience"
],
"type": "object"
}