get_provider
Retrieve provider details by ID from the UseGrant MCP Server to efficiently manage and access provider information in the platform.
Instructions
Get a provider by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the provider |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the provider",
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}