Skip to main content

Analyze Attachment

Snapshot Catalog Entry

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

POSTdiscord.analyze_attachment

Execute discord.analyze_attachment through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-analyze-attachment-example",
"method": "tools/call",
"params": {
"name": "discord.analyze_attachment",
"arguments": {
"channel_id": "channel_id_123",
"message_id": "message_id_123",
"attachment_index": "attachment_index_example",
"mode": "mode_example",
"prompt": "prompt_example"
}
}
}

Arguments Schema

{
"properties": {
"channel_id": {
"type": "string"
},
"message_id": {
"type": "string"
},
"attachment_index": {
"type": "string"
},
"mode": {
"type": "string"
},
"prompt": {
"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-analyze-attachment-example",
"method": "tools/call",
"params": {
"name": "discord.analyze_attachment",
"arguments": {
"channel_id": "channel_id_123",
"message_id": "message_id_123",
"attachment_index": "attachment_index_example",
"mode": "mode_example",
"prompt": "prompt_example"
}
}
}'

Example Responses

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