{
  "service": "collegiate",
  "displayName": "Merriam-Webster Collegiate",
  "categories": [
    "Data"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "MERRIAM_WEBSTER_API_KEY",
      "description": "Merriam-Webster Collegiate Dictionary API key passed as the key query parameter. Register for a Dictionary API account to get it: https://dictionaryapi.com/register/index"
    }
  ],
  "homepageUrl": "https://www.merriam-webster.com",
  "actions": [
    {
      "id": "collegiate.lookup_word",
      "service": "collegiate",
      "name": "lookup_word",
      "description": "Look up a word in the Merriam-Webster Collegiate Dictionary and return matching entries or spelling suggestions.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "term": {
            "type": "string",
            "minLength": 1,
            "description": "The headword or stem query to send to the Merriam-Webster Collegiate Dictionary API."
          }
        },
        "additionalProperties": false,
        "description": "The input payload for a Merriam-Webster Collegiate Dictionary lookup."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "The original lookup term."
          },
          "entries": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true,
              "description": "A Merriam-Webster Collegiate Dictionary entry modeled from the official JSON documentation. Entries include upstream rich JSON fields and may include derived audio_url, image_url, and page_url helpers."
            },
            "description": "The Merriam-Webster entry objects returned for the lookup term."
          },
          "suggestions": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "description": "The spelling suggestions returned for the lookup term."
          }
        },
        "additionalProperties": false,
        "description": "A Merriam-Webster lookup response containing JSON-only entries and spelling suggestions."
      }
    }
  ]
}
