UseGrant MCP Server

Official

create_client

Create a new client for a provider

Input Schema

NameRequiredDescriptionDefault
audienceYesThe audience of the client
nameYesThe name of the client
providerIdYesThe 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" }