Loading...
Loading...
Read your Discord identity and the list of servers (guilds) you belong to via the Discord API. Use when the user mentions Discord, asks which servers/guilds they are in, or wants their Discord account info.
npx skill4agent add acedatacloud/skills discordcurl + jq$DISCORD_TOKENAuthorization: Bearer $DISCORD_TOKENhttps://discord.com/api/v10{"code": <n>, "message": "<reason>"}401 Unauthorizedauth.acedata.cloud/user/connections429retry_afteridentifyemailguilds/guilds/{id}/channels/channels/.../guilds/{id}/memberscurl -sS -H "Authorization: Bearer $DISCORD_TOKEN" \
"https://discord.com/api/v10/users/@me" \
| jq '{id, username, global_name, email, avatar}'curl -sS -H "Authorization: Bearer $DISCORD_TOKEN" \
"https://discord.com/api/v10/users/@me/guilds" \
| jq 'map({id, name, owner, approximate_member_count})'?with_counts=trueapproximate_member_countapproximate_presence_countcurl -sS -H "Authorization: Bearer $DISCORD_TOKEN" \
"https://discord.com/api/v10/users/@me/guilds?with_counts=true" \
| jq 'map({id, name, owner, members: .approximate_member_count})'owner: trueiconhttps://cdn.discordapp.com/icons/<guild_id>/<icon>.png.gifa_?after=<last_guild_id>