Discord / warm

Get Webhook Info

Read webhook metadata for the installed or explicit webhook URL. Useful for operational diagnostics.

Quick Start

aweb inspect discord.get_webhook_info
aweb add discord
aweb plan "use Discord get webhook info 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_webhook_info');

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

Tool Card

Tool iddiscord.get_webhook_info
ProviderDiscord (discord)
Tool nameget_webhook_info
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": {
    "webhook_url": {
      "type": "string",
      "format": "uri",
      "description": "Optional explicit webhook URL override."
    }
  },
  "additionalProperties": false
}

Examples

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