> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# send_support_message

> Send a message in an existing support conversation

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

## What it does

Send a message in an existing support conversation

## Inputs

| Field                          | Type   | Description         |
| ------------------------------ | ------ | ------------------- |
| `conversation_id` *(required)* | string | The conversation ID |
| `message` *(required)*         | string | Your message        |

## Returns

| Field                  | Type   | Description                                            |
| ---------------------- | ------ | ------------------------------------------------------ |
| `message` *(required)* | string | Human-readable confirmation that the message was sent. |
| `conversationId`       | string | The ID of the conversation the message was sent to.    |

## Example call

```json theme={null}
{
  "tool": "send_support_message",
  "arguments": {
    "conversation_id": "\u2026",
    "message": "\u2026"
  }
}
```
