get_pokemon
Retrieve detailed Pokémon information including types, base stats, and abilities from PokeAPI by specifying the Pokémon name.
Instructions
Ficha con tipos, base stats y habilidades (PokeAPI).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}