Skip to main content
Glama

send_reply

Send visible replies or internal admin notes to conversations in the Cuti-E platform to manage user feedback and communication.

Instructions

Send a reply message in a conversation. Can be a visible reply or an internal note.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
conversation_idYesThe conversation ID to reply to
messageYesThe message text
is_internal_noteNoIf true, message is only visible to admins (default: false)

Implementation Reference

  • The handler logic for 'send_reply', which sends a POST request to the API to create a message in a conversation.
    case "send_reply": {
      const body = { message: args.message };
      if (args.is_internal_note) body.is_internal_note = true;
      result = await apiRequest("POST", `/v1/conversations/${args.conversation_id}/messages`, { body });
      break;
    }
  • The tool definition and input schema for 'send_reply'.
    {
      name: "send_reply",
      description:
        "Send a reply message in a conversation. Can be a visible reply or an internal note.",
      inputSchema: {
        type: "object",
        properties: {
          conversation_id: {
            type: "string",
            description: "The conversation ID to reply to",
          },
          message: {
            type: "string",
            description: "The message text",
          },
          is_internal_note: {
            type: "boolean",
            description: "If true, message is only visible to admins (default: false)",
          },
        },
        required: ["conversation_id", "message"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Stig-Johnny/cutie-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server