# Blink Discord

> Send messages, read channels, manage Discord server content. Use when asked to post in Discord, read channel messages, or interact with a Discord server.

- Skill: `blink-new/blink-discord` (Agent Skill)
- Install (CLI): `npx skillmds@latest add blink-new/blink-discord`
- Raw SKILL.md: https://api.skillmd.com/api/skills/blink-new/blink-discord/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: blink-new (https://skillmd.com/u/blink-new)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/blink-new/blink-discord

---


# Blink Discord

Interact with the user's linked Discord account/server. Provider key: `discord`.

## Get current user info
```bash
blink connector exec discord /users/@me GET
```

## List servers (guilds)
```bash
blink connector exec discord /users/@me/guilds GET
```

## List channels in a server
```bash
blink connector exec discord /guilds/GUILD_ID/channels GET
```

## Read recent messages from a channel
```bash
blink connector exec discord /channels/CHANNEL_ID/messages GET '{"limit": 20}'
```

## Send a message to a channel
```bash
blink connector exec discord /channels/CHANNEL_ID/messages POST '{"content": "Hello from your agent!"}'
```

## Get server members
```bash
blink connector exec discord /guilds/GUILD_ID/members GET '{"limit": 50}'
```

## Common use cases
- "Post an update in #announcements on my Discord server" → send message
- "What was discussed in #general today?" → read channel messages
- "List all channels in my server" → list channels
- "Who are the members of my Discord?" → list members
- "Send a message to the dev channel: new release is live" → postMessage

