list_guilds

Pack: discord · Endpoint: https://gateway.pipeworx.io/discord/mcp

List the Discord servers (guilds) the authorized user is a member of. Returns each server’s id, name, whether the user owns it, the user’s permissions bitfield, the server’s feature flags, and approximate member count. Covers only the user’s own server memberships — it cannot read messages or non-member servers.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/discord/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_guilds","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_guilds', {});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "discord": {
      "url": "https://gateway.pipeworx.io/discord/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026