Discord / warm

Get Channel

Read a channel or thread object by channel_id. Requires bot_token and permission to view the target.

Quick Start

aweb inspect discord.get_channel
aweb add discord
aweb plan "use Discord get channel in an agent workflow"
import Aweb, { Agent } from '@aweb/sdk';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });

agent.add('discord');

const plan = await agent.plan('Use Discord for this workflow');
const tool = await aweb.tools.inspect('discord.get_channel');

console.log(plan.nextAction);
console.log(tool.inputSchema);

Tool Card

Tool iddiscord.get_channel
ProviderDiscord (discord)
Tool nameget_channel
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0

Requirements and Governance

Authstatic_fields
Credentialsetup_required
Workspaceglobal
Approvalnone
RiskREAD
Permissionsread
Credential setup/api/mcp-warehouse/credentials/discord/init

Schemas

{
  "type": "object",
  "properties": {
    "channel_id": {
      "type": "string",
      "pattern": "^\\d{17,20}$",
      "description": "Discord channel or thread ID."
    }
  },
  "required": [
    "channel_id"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Discord get channel in an agent workflow.",
    "args": {
      "channel_id": "<channel_id>"
    }
  }
]
Back to MCP Tool Cards