Skip to main content

List Threads

Snapshot Catalog Entry

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

GETdiscord.list_threads

Execute discord.list_threads through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-list-threads-example",
"method": "tools/call",
"params": {
"name": "discord.list_threads",
"arguments": {
"channel_id": "channel_id_123",
"include_archived": "",
"limit": "limit_example"
}
}
}

Arguments Schema

{
"properties": {
"channel_id": {
"type": "string"
},
"include_archived": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"limit": {
"type": "string"
}
},
"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-list-threads-example",
"method": "tools/call",
"params": {
"name": "discord.list_threads",
"arguments": {
"channel_id": "channel_id_123",
"include_archived": "",
"limit": "limit_example"
}
}
}'

Example Responses

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