discord_remove_friend
Remove a Discord friend or cancel a pending friend request by specifying the user ID with this tool, simplifying friend list management directly through Discord's API.
Instructions
Remove a friend or cancel a friend request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes | User ID to remove as friend |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userId": {
"description": "User ID to remove as friend",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}