list_tenant_providers
Retrieve a comprehensive list of all providers associated with a specific tenant using the MCP server, enabling efficient management and oversight of tenant resources.
Instructions
List all providers for a tenant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tenantId | Yes | The ID of the tenant |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tenantId": {
"description": "The ID of the tenant",
"minLength": 1,
"type": "string"
}
},
"required": [
"tenantId"
],
"type": "object"
}