discord_get_channel
Retrieve detailed information about a specific Discord channel by providing its channel ID, enabling easy access to channel data for efficient server management.
Instructions
Get information about a Discord channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"description": "The Discord channel ID",
"type": "string"
}
},
"required": [
"channelId"
],
"type": "object"
}