Skip to main content
Glama
sebastianzapatar

rickandmorty-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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 name es una coincidencia parcial: 'rick' encuentra 'Rick Sanchez' y 'Evil Rick'.

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 character_ids de un episodio.

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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues