# List Users that Reacted with Emoji — Discord Bot

> Return a list of users that reacted with a specified emoji.

- Key: `discord_bot-list-users-with-emoji-reactions`
- Type: Action (Read-only)
- Version: 1.0.1
- App: Discord Bot (`discord_bot`) — https://pipedream.com/apps/discord-bot.md
- This page (HTML): https://pipedream.com/apps/discord-bot/actions/list-users-with-emoji-reactions
- Hints: read-only · open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/discord_bot/actions/list-users-with-emoji-reactions/list-users-with-emoji-reactions.mjs

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `guildId` | `string` | Yes | Discord Guild where your channel lives Options are loaded from the connected account. |
| `channelId` | `string` | Yes | Please select a channel Options are loaded from the connected account. |
| `messageId` | `string` | Yes | Copy the specific Message ID from your channel (eg. 907292892995932230) |
| `decodedEmoji` | `string` | Yes | Emoji (eg. 👍). To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id. |
| `max` | `integer` | No | Max number of records in the whole pagination (eg. 60) |
| `limit` | `integer` | No | Max number of members to return per page (1-1000) |
| `after` | `string` | No | The highest user id in the previous page |

## Run it

**MCP**

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "discord_bot",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
  name: "discord_bot-list-users-with-emoji-reactions",
  arguments: {
    guildId: "Guild",
    channelId: "Channel",
  },
})
```

**TypeScript**

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "discord_bot-list-users-with-emoji-reactions",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    discord_bot: { authProvisionId: "apn_xxxxxxx" },
    guildId: "Guild",
    channelId: "Channel",
  },
})

console.log(result)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "discord_bot-list-users-with-emoji-reactions",
    "configured_props": {
      "discord_bot": { "authProvisionId": "apn_xxxxxxx" },
      "guildId": "Guild",
      "channelId": "Channel"
    }
  }'
```

---

- App: https://pipedream.com/apps/discord-bot.md · All apps: https://pipedream.com/apps
