Discord / warm

Get Current User

Validate the installed Discord bot token and return the current bot user profile. Requires bot_token.

Quick Start

aweb inspect discord.get_current_user
aweb add discord
aweb plan "use Discord get current user 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_current_user');

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

Tool Card

Tool iddiscord.get_current_user
ProviderDiscord (discord)
Tool nameget_current_user
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": {},
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Discord get current user in an agent workflow.",
    "args": {}
  }
]
Back to MCP Tool Cards