tvmaze-mcp-server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tvmaze-mcp-serverWhen does the next episode of 'Severance' air?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Overview
Television data from TVmaze — a community-maintained database of series, episodes, air times, and credits, served by a keyless public API. Find a show by title or by its IMDb, TheTVDB, or TVRage id, then read its profile, season episode guides, and cast, or ask when the next episode airs in a viewer's timezone. A whole date works as the starting point too: what a country's networks broadcast that day, what the global streaming services released, or both merged. Runs as a stdio process or a local Streamable HTTP server.
Tools
Tool | Description |
| Fuzzy title search returning up to 10 shows with channel, status, genres, rating, and external catalog ids |
| Full profile for one TVmaze id — weekly slot, season list, and the previous and next episode |
| Resolve a show from its IMDb, TheTVDB, or TVRage id into the matching TVmaze profile |
| When a show's next episode airs, by TVmaze id or title, converted to a viewer timezone |
| Episode guide for one season or the whole run, with air times, runtimes, and synopses |
| Episodes airing on a date — broadcast and cable networks in one country, streaming services, or both |
| A show's credited cast and the characters they play, optionally crew; or one episode's guest cast |
Related MCP server: moviefinder-mcp
Capability reference
tvmaze_search_shows tool
Fuzzy match on
queryagainst every show title, so minor misspellings still resolveHard-capped at 10 rows by the source with no pagination; enrichment echoes the query and reports
shown/cap, and the notice routes a saturated or empty result to a narrower title or totvmaze_lookup_showRows carry the shared show summary plus
match_score, which is comparable only within one result set
tvmaze_get_show tool
show_idfromtvmaze_search_shows,tvmaze_lookup_show, or a schedule row; optional IANAtimezonefor the rendered episode timesReturns the full profile —
schedule_days/schedule_time,official_site,externals— with every season and thenext_episode/previous_episodethe source hasA
Runningshow with nothing announced comes back with a notice pointing atprevious_episoderather than a silently empty fieldAn unknown
show_idfails as a typedshow_not_found
tvmaze_lookup_show tool
One
sourceof three —imdb(attid),thetvdb, ortvrage(defunct, present only in older records) — paired withexternal_idA show absent from TVmaze is a result, not an error:
found: falseplusguidancerouting totvmaze_search_showsEchoes
sourceandexternal_id; a hit returns the same show summary the search tool does
tvmaze_get_next_episode tool
by: "id"takes a TVmaze id;by: "title"resolves a title through a stricter single-match search thantvmaze_search_showsusesAir times render in the requested IANA
timezone;time_known: falsemeans the source announced no clock time, so only the date is reliableTyped
miss_reason—show_not_foundon the title arm,no_scheduled_episodefor a series between seasons, the latter still carryingprevious_episodeA
show_idthat resolves to nothing throwsshow_not_found_by_id; an unresolvable title is a miss
tvmaze_get_episodes tool
seasonlists one season (the cheaper path); omit it to walk the whole runinclude_specialsdefaults to false; a season listing reports how many specials it filtered outlimit1–250 (default 50) withcursor/next_cursorpagination andhas_more; enrichment carries the pre-pagetotalCountA
season_not_foundfailure names the seasons that do exist
tvmaze_get_schedule tool
scopepicks the feed:linearis one country's broadcast and cable networks plus its own streaming services,streamingis global services whencountryis omitted and that country's local ones when it is given,allmerges both across three upstream requestsdatedefaults to today in the requestedtimezone;countryis ISO 3166-1 alpha-2 (the United Kingdom isGB) and falls back to the configured default forlinearandallEntries carry
feed(linear/streaming) alongside the episode and its show; a merged query dedupes and sorts byairstampapplied_feedsnames exactly which upstream feeds answered, e.g.["linear:GB","web:GB","web:global"]; one feed failing degrades to a notice instead of failing the calllimit1–250 (default 50) with cursor pagination — a country day runs to roughly 50 broadcast entries, the global streaming feed to over 120
tvmaze_get_cast tool
scope: "show"returns the main cast with character names, plus crew wheninclude_crewis set;scope: "episode"returns that episode's guest castCast credits carry
as_selfandvoice_only; crew credits carrycredit_typeand no characterTVmaze records no recurring-versus-guest distinction on a show's cast list, so absence from it is not evidence a performer never appeared — check an episode's guest cast
Missing credits arrive as a notice, not an error; community coverage thins on smaller titles
Features
Built on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
TVmaze-specific:
Keyless — no account, no API key, and every tool works on a fresh install with nothing configured
Upstream requests are paced under the documented per-IP budget with bounded concurrency and a 429 cooldown that honors
Retry-After, in front of an in-process response cache shared across tenantsAir times are computed from
airstampalone; theairdate/airtimepair is the broadcaster's programming-day convention and diverges by a full day on overnight slotsCommunity-authored HTML summaries are stripped to plain text, never rewritten or spell-corrected
Agent-friendly output:
No fabricated clock times — a record with no announced broadcast time reports
time_known: falseand a date only, and absent upstream fields render asNot availablerather than0or""Typed error contracts on every tool — a
reasonplus a recovery hint that reaches bothstructuredContentand the text surfaceResolution misses are results, not failures:
tvmaze_lookup_showand the title arm oftvmaze_get_next_episodereturnfound: falsewithguidancefor the next callEnrichment states what a call actually covered — the echoed query,
applied_feeds, pre-page totals, and truncation against the source's own caps
Data and licensing
Data comes from TVmaze and is licensed CC BY-SA. Credit TVmaze as the source and keep the url field that every show, episode, and person record carries — linking back is what satisfies attribution. Under ShareAlike, an adaptation of this data must be shared under the same licence.
TVmaze rate-limits to at least 20 calls every 10 seconds per IP address and answers a burst past that with HTTP 429; the server paces itself under that budget and backs off when one arrives. Upstream caches its output for 60 minutes, so a schedule change or a newly announced episode can take up to an hour to appear; the local response cache (TVMAZE_CACHE_TTL_S, default 300 s) sits well inside that window.
Getting started
Add the following to your MCP client configuration file. No API key is required.
{
"mcpServers": {
"tvmaze-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/tvmaze-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"tvmaze-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/tvmaze-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"tvmaze-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/tvmaze-mcp-server:latest"]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.4.0 or higher (or Node.js v24+).
No TVmaze account or API key. Set
TVMAZE_DEFAULT_TIMEZONEandTVMAZE_DEFAULT_COUNTRYonce if the calls should default to somewhere other than UTC and the US.
Installation
Clone the repository:
git clone https://github.com/cyanheads/tvmaze-mcp-server.gitNavigate into the directory:
cd tvmaze-mcp-serverInstall dependencies:
bun installConfigure environment (optional):
cp .env.example .env
# every variable is optional — edit only what you want to overrideConfiguration
Variable | Description | Default |
| TVmaze API base URL. Override to point at an enterprise endpoint. |
|
|
| server name, version, and repository URL |
| IANA timezone used when a tool call omits |
|
| ISO 3166-1 alpha-2 country used for |
|
| Seconds to hold an upstream response in the in-process cache. |
|
| Concurrent upstream requests (1–16). |
|
| Per-request timeout in milliseconds (1000–120000). |
|
| Transport: |
|
| Port for the HTTP server. |
|
| Path the MCP server is mounted at. |
|
| HTTP session mode. This server declares |
|
| Auth mode: |
|
| Log level (RFC 5424). |
|
| Directory for log files (Node.js only). |
|
| Storage backend. |
|
| Enable OpenTelemetry instrumentation (spans, metrics, completion logs). |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t tvmaze-mcp-server .
docker run --rm -p 3010:3010 tvmaze-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/tvmaze-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing and validation with Zod. |
| Tool definitions ( |
| TVmaze REST client — pacing, retries, response cache, and normalization into the domain types. |
| Unit and integration tests mirroring |
| Design document and the generated project tree. |
Development guide
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging; every upstream call goes throughTvmazeService, neverfetchfrom a handlerRegister new tools in the
createApp()arrays insrc/index.tsKeep the upstream boundary in the service: validate raw → normalize to the domain type → return the output schema, and never fabricate a missing field — an absent air time stays absent
Contributing
Issues are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
TVMaze MCP — TV show metadata, episodes, schedules (no auth)
Unlock a world of television with the TV Maze MCP server. Effortlessly search for shows by name or
Trakt MCP — TV/movie metadata + watch tracking signals
OMDb MCP — IMDB-derived movie / TV / episode data (BYO key)
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server that wraps The Movie Database (TMDB) API, enabling search for movies and TV shows, retrieval of movie details, recommendations, similar movies, trending content, streaming providers, and movie discovery.8-
- FlicenseAqualityDmaintenanceAn MCP server that wraps the TMDB API, enabling search of movies and TV shows, retrieval of details, trending titles, recommendations, and streaming provider information.8-
- AlicenseAqualityAmaintenanceMCP server for The Movie Database (TMDB): search and look up movies, TV shows and people, and read IMDb/Rotten Tomatoes/Metacritic ratings (via OMDb) in the same call.31138 npm4MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching TV show metadata, episodes, and schedules via the TVMaze API with no authentication required.1 npmMIT