get_tenant_provider
Retrieve provider details for a specific tenant on the UseGrant MCP Server by submitting tenantId and providerId to ensure accurate tenant-provider association and access management.
Instructions
Get a provider for a tenant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
providerId | Yes | The ID of the tenant provider | |
tenantId | Yes | The ID of the tenant |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"providerId": {
"description": "The ID of the tenant provider",
"minLength": 1,
"type": "string"
},
"tenantId": {
"description": "The ID of the tenant",
"minLength": 1,
"type": "string"
}
},
"required": [
"tenantId",
"providerId"
],
"type": "object"
}