A FastMCP server that provides access to a MongoDB movie database with natural language queries.
Connect Movie MCP Simple to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A FastMCP server that provides access to a MongoDB movie database with natural language queries. The movie mcp simple mcp server is what makes that connection.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
find_movies — Search for movies with various filters: python find_movies(title=None, genre=None, actor=None, year=None, min_rating=None, limit=10)count_movies — Count movies matching criteria: python count_movies(genre=None, year=None, min_rating=None)get_top_movies — Get highest rated movies: python get_top_movies(year=None, genre=None, limit=5)get_movie_details — Get full details for a specific movie: python get_movie_details(title)sample_mflix database with movies collectionInstallation goes through your MCP client rather than a global install: point it at pymongo on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Movie MCP Simple's toolset — find_movies, count_movies, get_top_movies and 1 more — is a fair guide to whether it matches your workflow. It is maintained by patw; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Movie MCP Simple's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| find_movies | Search for movies with various filters: python find_movies(title=None, genre=None, actor=None, year=None, min_rating=None, limit=10) |
| count_movies | Count movies matching criteria: python count_movies(genre=None, year=None, min_rating=None) |
| get_top_movies | Get highest rated movies: python get_top_movies(year=None, genre=None, limit=5) |
| get_movie_details | Get full details for a specific movie: python get_movie_details(title) |
{
"mcpServers": {
"movie-mcp-simple": {
"command": "uvx",
"args": ["pymongo"]
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
sample_mflix database with movies collectionRead-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.