getMonsterByName
Search for fictional monster names in the RAGmonsters dataset using partial matches. Returns up to 5 results for efficient identification and retrieval.
Instructions
Get monsters by name (partial match, returns up to 5 matches)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the monster to search for (can be partial) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the monster to search for (can be partial)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}