[
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"name": "test"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"random_string": {
"type": "string"
}
},
"type": "object"
},
"name": "discord_login"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"channelId",
"message"
],
"type": "object"
},
"name": "discord_send"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"guildId": {
"type": "string"
}
},
"required": [
"guildId"
],
"type": "object"
},
"name": "discord_get_forum_channels"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"forumChannelId": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"forumChannelId",
"title",
"content"
],
"type": "object"
},
"name": "discord_create_forum_post"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
},
"name": "discord_get_forum_post"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"threadId",
"message"
],
"type": "object"
},
"name": "discord_reply_to_forum"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelName": {
"type": "string"
},
"guildId": {
"type": "string"
},
"topic": {
"type": "string"
}
},
"required": [
"guildId",
"channelName"
],
"type": "object"
},
"name": "discord_create_text_channel"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": [
"channelId"
],
"type": "object"
},
"name": "discord_delete_channel"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"limit": {
"default": 50,
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"channelId"
],
"type": "object"
},
"name": "discord_read_messages"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"guildId": {
"type": "string"
}
},
"required": [
"guildId"
],
"type": "object"
},
"name": "discord_get_server_info"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"emoji": {
"type": "string"
},
"messageId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
},
"name": "discord_add_reaction"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"emojis": {
"items": {
"type": "string"
},
"type": "array"
},
"messageId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emojis"
],
"type": "object"
},
"name": "discord_add_multiple_reactions"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"type": "string"
},
"emoji": {
"type": "string"
},
"messageId": {
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
},
"name": "discord_remove_reaction"
},
{
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"reason": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
},
"name": "discord_delete_forum_post"
}
]