list_clients
Retrieve a list of all clients associated with a specific provider using the provider ID on the UseGrant MCP Server for efficient client management.
Instructions
List all clients
Input Schema
Name | Required | Description | Default |
---|---|---|---|
providerId | Yes | The ID of the provider |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"providerId": {
"description": "The ID of the provider",
"minLength": 1,
"type": "string"
}
},
"required": [
"providerId"
],
"type": "object"
}