pokemon-query
Answer natural language queries about Pokémon by retrieving detailed data, discovering random Pokémon, and finding Pokémon by region or type through the Poke-MCP server.
Instructions
Answer natural language Pokémon queries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | A natural language query about Pokémon |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "A natural language query about Pokémon",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}