Skip to main content
Glama

Poke-MCP

types.ts1.06 kB
// Interface definitions export interface PokemonResponse { content: Array<{ type: "text"; text: string; }>; [key: string]: unknown; } export interface PokemonSpecies { name: string; url: string; } export interface GenerationData { pokemon_species: PokemonSpecies[]; } export interface PokemonType { type: { name: string; }; } export interface PokemonAbility { ability: { name: string; }; } export interface FlavorTextEntry { flavor_text: string; language: { name: string; }; } export interface Pokemon { id: number; name: string; height: number; weight: number; types: PokemonType[]; abilities: PokemonAbility[]; sprites: { front_default: string; }; } export interface PokemonSpeciesDetails { flavor_text_entries: FlavorTextEntry[]; } export interface TypeData { pokemon: { pokemon: { name: string; url: string; }; }[]; } // Response type for formatted Pokémon data export interface PokemonResponse { content: { type: "text"; text: string; }[]; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NaveenBandarage/poke-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server