discord-list
2
总安装量
1
周安装量
#65355
全站排名
安装命令
npx skills add https://github.com/lycfyi/community-agent-plugin --skill discord-list
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Discord List
Lists Discord servers, channels, and DMs accessible with your user token.
When to Use
- User asks “what Discord servers do I have?”
- User asks “what channels are in [server]?”
- User wants to “list my Discord servers”
- User wants to “show me Discord channels”
- User needs to find server or channel IDs
- User asks “list my Discord DMs”
- User wants to find DM channel IDs
How to Execute
List all servers (includes DMs by default):
python ${CLAUDE_PLUGIN_ROOT}/tools/discord_list.py --servers
List servers only (exclude DMs):
python ${CLAUDE_PLUGIN_ROOT}/tools/discord_list.py --servers --no-dms
List channels in a specific server:
python ${CLAUDE_PLUGIN_ROOT}/tools/discord_list.py --channels SERVER_ID
Replace SERVER_ID with the actual Discord server ID.
List DMs only:
python ${CLAUDE_PLUGIN_ROOT}/tools/discord_list.py --dms
Output
Returns a formatted table of:
- Servers: ID, name, member count
- Channels: ID, name, category
- DMs: Channel ID, User ID, Username, Display Name
Prerequisites
./.envfile withDISCORD_USER_TOKENset (in cwd)- Network access to Discord
Next Steps
After listing channels, suggest syncing messages with discord-sync skill.