Discord / warm

Inspect Operational Routes

Inspect the generated Aweb Discord operational route registry. Returns route ids, owners, env bindings, and configured status without exposing raw webhook secrets.

Quick Start

aweb inspect discord.inspect_operational_routes
aweb add discord
aweb plan "use Discord inspect operational routes 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.inspect_operational_routes');

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

Tool Card

Tool iddiscord.inspect_operational_routes
ProviderDiscord (discord)
Tool nameinspect_operational_routes
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": {
    "route_id": {
      "type": "string",
      "enum": [
        "signal.gex.primary",
        "signal.veritas.primary",
        "signal.premium.broadcast",
        "maestro.default",
        "warehouse.default",
        "ops.deployments",
        "ops.infrastructure",
        "ops.incidents",
        "ops.mcp_warehouse",
        "ops.os_copilot",
        "ops.billing_quota",
        "ops.provider_health"
      ],
      "description": "Optional exact route_id filter."
    },
    "owner": {
      "type": "string",
      "enum": [
        "signal-engine",
        "maestro",
        "warehouse",
        "ops"
      ],
      "description": "Optional route owner filter."
    },
    "configured_only": {
      "type": "boolean",
      "description": "When true, return only routes with a configured env binding."
    }
  },
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Discord inspect operational routes in an agent workflow.",
    "args": {
      "route_id": "<route_id>",
      "owner": "<owner>",
      "configured_only": "<configured_only>"
    }
  }
]
Back to MCP Tool Cards