Skip to main content

Channel Daily Audit

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTdiscord.channel_daily_audit

Execute discord.channel_daily_audit through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-channel-daily-audit-example",
"method": "tools/call",
"params": {
"name": "discord.channel_daily_audit",
"arguments": {
"channel_id": "channel_id_123",
"date": "date_example",
"limit": "limit_example",
"timezone_name": "timezone_name_example",
"include_threads": ""
}
}
}

Arguments Schema

{
"properties": {
"channel_id": {
"type": "string"
},
"date": {
"type": "string"
},
"limit": {
"type": "string"
},
"timezone_name": {
"type": "string"
},
"include_threads": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
}
},
"required": [
"channel_id"
],
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "discord-channel-daily-audit-example",
"method": "tools/call",
"params": {
"name": "discord.channel_daily_audit",
"arguments": {
"channel_id": "channel_id_123",
"date": "date_example",
"limit": "limit_example",
"timezone_name": "timezone_name_example",
"include_threads": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool discord.channel_daily_audit executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}