discord_create_dm
Create or retrieve a direct message channel with a specific user using their Discord user ID, enabling private communication via the Discord MCP Server.
Instructions
Create or get existing DM channel with a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | The user ID to create DM with |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userId": {
"description": "The user ID to create DM with",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}