delete_client
Remove a client from a provider on the UseGrant MCP Server by specifying the client and provider IDs to manage access and relationships efficiently.
Instructions
Delete a client from a provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | The ID 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": {
"clientId": {
"description": "The ID of the client",
"minLength": 1,
"type": "string"
},
"providerId": {
"description": "The ID of the provider",
"minLength": 1,
"type": "string"
}
},
"required": [
"providerId",
"clientId"
],
"type": "object"
}