delete_provider
Remove a provider from the UseGrant MCP Server by specifying its unique ID. This tool ensures accurate management of provider records within the platform.
Instructions
Delete a provider
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"
}