Used as the JavaScript runtime to execute the MCP server application.
Used to store and access API tokens securely through environment variables, specifically for The Movie DB API authentication.
The Movie DB MCP Server
Sample for how to create MCP server. Using the The Movie DB API.
Before starting, create
In the .env, add the The Movie DB token
Run the server
The server will run http://localhost:3000/mcp.
Add the MCP server in your client.
Supported Function
popular_movienow_playing_moviemovie_detailcast_listsearch_movie
1. popular_movie
Parameters:
language(optional, default: 'en-US')page(optional, default: 1)
2. now_playing_movie
Parameters:
None (no parameters required)
3. movie_detail
Parameters:
movie_id(required)language(optional, default: 'en-US')
4. cast_list
Parameters:
movie_id(required)language(optional, default: 'en-US')
5. search_movie
Parameters:
query(required)page(optional, default: 1)language(optional, default: 'en-US')year(optional)
This server cannot be installed