get_message
Retrieve a specific message using its ID within Carbon Voice's MCP server. Optionally fetch additional details like conversation, creator, or labels, and specify the language for accurate results.
Instructions
Get a message by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Fields (optional) - Additional fields to include in the response. Possible values: conversation, creator, labels. | |
id | Yes | ||
language | No | Language (optional) - Original language will be used if not provided or not found. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"description": "Fields (optional) - Additional fields to include in the response. Possible values: conversation, creator, labels.",
"type": "string"
},
"id": {
"type": "string"
},
"language": {
"description": "Language (optional) - Original language will be used if not provided or not found.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}