A Model Context Protocol (MCP) server that tracks movies, books, and TV shows, providing intelligent recommendations based on your preferences. Built
If you already use Mediasage, the mediasage mcp server is the piece that lets your assistant work with it directly. A Model Context Protocol (MCP) server that tracks movies, books, and TV shows, providing intelligent recommendations based on your preferences. Built with Bun, SQLite (via Drizzle ORM), and supports both local (stdio) and remote (HTTP/SSE).
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
search_and_add_movie — Search for a movie and add it with auto-populated metadata from OMDBsearch_and_add_book — Search for a book and add it with auto-populated metadata from Google Bookssearch_and_add_tv_show — Search for a TV show and add it with auto-populated metadata from TMDBlist_media — The list_media tool exposed by this serveradd_movie_to_watchlist — The add_movie_to_watchlist tool exposed by this serverget_smart_recommendations — Get intelligent recommendations based on your preferences across all media typesmark_as_watched — The mark_as_watched tool exposed by this serveranalyze_preferences — The analyze_preferences tool exposed by this serverupdate_movie — The update_movie tool exposed by this serverConfiguration is passed through the environment: API_KEY, PORT, OMDB_API_KEY, TMDB_API_KEY, GOOGLE_BOOKS_API_KEY, YOUR_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Mediasage's toolset — search_and_add_movie, search_and_add_book, search_and_add_tv_show and 6 more — is a fair guide to whether it matches your workflow. It is maintained by imjoshnewton; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| search_and_add_movie | Search for a movie and add it with auto-populated metadata from OMDB. |
| search_and_add_book | Search for a book and add it with auto-populated metadata from Google Books. |
| search_and_add_tv_show | Search for a TV show and add it with auto-populated metadata from TMDB. |
| list_media | The list_media tool exposed by this server. |
| add_movie_to_watchlist | The add_movie_to_watchlist tool exposed by this server. |
| get_smart_recommendations | Get intelligent recommendations based on your preferences across all media types. |
| mark_as_watched | The mark_as_watched tool exposed by this server. |
| analyze_preferences | The analyze_preferences tool exposed by this server. |
| update_movie | The update_movie tool exposed by this server. |
{
"mcpServers": {
"mediasage": {
"command": "bun",
"args": ["run", "/path/to/mediasage/index.ts"]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| API_KEY | Credential the server authenticates with. | Yes |
| PORT | Configuration value read at startup. | Optional |
| OMDB_API_KEY | Credential the server authenticates with. | Yes |
| TMDB_API_KEY | Credential the server authenticates with. | Yes |
| GOOGLE_BOOKS_API_KEY | Credential the server authenticates with. | Yes |
| YOUR_API_KEY | Credential the server authenticates with. | Yes |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.