lookup_word
Look up word definitions, pronunciations, and example sentences from Cambridge Dictionary to understand word meanings and usage.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| word | Yes | The word to look up |
Input Schema (JSON Schema)
{
"properties": {
"word": {
"description": "The word to look up",
"minLength": 1,
"type": "string"
}
},
"required": [
"word"
],
"type": "object"
}