action languagetool_get_words { label: "List words in dictionaries" description: "List words in the user's personal dictionaries." provider: languagetool method: GET path: "/words" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } dicts: { type: "string" } limit: { type: "string" } offset: { type: "string" } username: { type: "string" } } required: ["apiKey", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }