search_planets
Find Star Wars planets by name to get detailed information about their climate, terrain, and population from the official Star Wars API.
Instructions
Busca planetas do Star Wars por nome
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | Yes | Nome do planeta para buscar |
Input Schema (JSON Schema)
{
"properties": {
"search": {
"description": "Nome do planeta para buscar",
"type": "string"
}
},
"required": [
"search"
],
"type": "object"
}