reverse_word
Reverse the characters of any word with this tool. Input a word, and it will return the reversed version, ideal for text transformation tasks in the MCP Demo Project.
Instructions
Reverses the characters in a given word
Input Schema
Name | Required | Description | Default |
---|---|---|---|
word | Yes | The word to reverse |
Input Schema (JSON Schema)
{
"properties": {
"word": {
"description": "The word to reverse",
"type": "string"
}
},
"required": [
"word"
],
"type": "object"
}