echo
Transform and return input text with case modifications using this tool. Ideal for processing and standardizing text data within the MCP JIRA Server environment.
Instructions
Echo back the input text with optional case transformation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | ||
transform | No |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"title": "Text",
"type": "string"
},
"transform": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Transform"
}
},
"required": [
"text"
],
"title": "echo_toolArguments",
"type": "object"
}