rickandmorty-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_charactersA | Busca personajes de Rick and Morty por nombre y filtros. Devuelve una página de hasta 20 resultados con el total y si hay página siguiente. El filtro |
| get_characterA | Devuelve la ficha completa de un personaje a partir de su id numérico. |
| get_charactersA | Devuelve varios personajes en una sola llamada a partir de sus ids. Útil tras una búsqueda o con los |
| list_locationsA | Busca localizaciones por nombre, tipo o dimensión. Devuelve una página de hasta 20 resultados, cada uno con los ids de sus residentes. |
| get_locationA | Devuelve una localización por su id, con los ids de sus residentes. |
| list_episodesA | Busca episodios por nombre o por código de temporada/episodio. Devuelve una página de hasta 20 resultados con los ids de los personajes que aparecen. |
| get_episodeA | Devuelve un episodio por su id, con fecha de emisión y personajes. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a clear, distinct purpose: list_* tools search with filters, get_* tools fetch by ID, and get_characters is explicitly for bulk retrieval. The singular/plural distinction between get_character and get_characters is clarified in descriptions.
All tools follow a consistent verb_noun pattern (list_<resource>, get_<resource>) using snake_case. The naming is predictable and immediately conveys the action and target resource.
Seven tools is well-scoped for a read-only API client covering three resource types with list and get operations plus a bulk getter. Every tool serves a distinct need without redundancy.
For a read-only Rick and Morty data access server, the surface is complete: all three core resources (characters, locations, episodes) have both search and direct lookup. The bulk character fetch complements the list results and episode character ID lists.