greet
Sends a personalized greeting message to verify API connectivity and ensure proper communication with the ContextEngine MCP Server. Includes optional name customization for testing.
Instructions
Sends a personalized greeting message to test API connectivity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Optional name to include in the greeting message. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Optional name to include in the greeting message.",
"type": "string"
}
},
"type": "object"
}