get_dictionary_entry
Fetch detailed word definitions, examples, and linguistic information in JSON format from the Longman Dictionary of Contemporary English website for enhanced AI agent processing.
Instructions
Busca o HTML do Longman para uma palavra e retorna JSON parseado (dictionaryEntries, simpleForm, continuousForm)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
word | Yes | A palavra a ser consultada (ex: rot) |
Input Schema (JSON Schema)
{
"properties": {
"word": {
"description": "A palavra a ser consultada (ex: rot)",
"type": "string"
}
},
"required": [
"word"
],
"type": "object"
}