media-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TMDB_API_KEY | Yes | API Read Access Token from TMDB |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_mediaA | Busca películas o series en TMDB por título. |
| add_to_watchlistB | Agrega una película o serie a la watchlist (pendiente de ver). |
| get_watchlistA | Lista lo que está en watchlist o en progreso (watching). |
| mark_watchedA | Marca una película o serie (a nivel general) como vista, opcionalmente con rating y notas. Para episodios sueltos de una serie usa mark_episode_watched. |
| get_watched_historyA | Lista todo lo marcado como visto, con rating y notas. |
| mark_episode_watchedB | Marca un episodio específico de una serie como visto. |
| get_next_episodeC | Encuentra el próximo episodio no visto de una serie. |
| get_recommendationsA | Recomienda películas o series. Si das 'based_on' recomienda parecidos a ese título; si no, usa tu historial de vistos como base. |
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 8 tools
Each tool targets a distinct operation: adding to watchlist, getting next episode, recommendations, history, watchlist, marking episodes, marking media, and searching. No overlap in functionality.
Most tools follow a verb_object pattern (get_watchlist, mark_watched, search_media). However, add_to_watchlist uses a preposition, breaking the pattern slightly. Overall clear and predictable.
8 tools is well-scoped for a media tracking server, covering essential operations from search to watchlist management to recommendations without being excessive.
Covers core read and create operations but lacks update/delete tools (e.g., remove from watchlist, update rating). Episode tracking only allows marking individual episodes, not seasons.