Movie List 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., "@Movie List MCP ServerSearch for the Tamil movie Jockey"
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.
Movie List MCP Server
MCP (Model Context Protocol) server that lets you search Tamil movies by name and get their page links from moviesdatamil.net/tamil-2026-movies/.
What it does
Tool:
search_movie– Search by movie name (partial, case-insensitive). Returns the movie page URL(s).
Related MCP server: Moviesda MCP Server
Setup
npm install
npm run buildRun
npm start
# or for development with tsx:
npm run devThe server uses stdio transport (stdin/stdout), so it is intended to be run as a subprocess by an MCP client (e.g. Cursor, Claude Desktop).
Use in Cursor
Open Cursor Settings → Cursor Settings → MCP (or edit the MCP config file).
Add this server to your MCP config (e.g.
~/.cursor/mcp.jsonor the path Cursor shows):
{
"mcpServers": {
"movielist": {
"command": "node",
"args": ["/Users/manikandan/Desktop/movielist/dist/index.js"]
}
}
}Replace the path with the absolute path to your movielist/dist/index.js.
Restart Cursor or reload MCP servers.
In chat, you can ask: “Search for the movie Jockey” or “Get the link for Fourth Floor movie” – the assistant will use the
search_movietool and return the movie link.
Use in Claude Desktop
In Claude Desktop → Settings → Developer → Edit Config, add:
{
"mcpServers": {
"movielist": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/movielist/dist/index.js"]
}
}
}Restart Claude Desktop and use the MCP; you can then ask for movie links by name.
Debug with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.jsThis opens a UI where you can call search_movie with a name and see the response.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP tools for AI agents: render URLs to image/PDF, check link health, convert HTML/CSV/JSON.
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
Web search, scraping, RAG answers with citations, and translation as MCP tools.
YouTube transcripts, search, channel browsing, and playlists for AI agents via MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn intelligent movie and TV series resource search tool based on Model Context Protocol (MCP), supporting multi-source search and link verification.22Apache 2.0
- FlicenseNot gradedqualityDmaintenanceAn MCP server for searching and managing Tamil movies from moviesda16.com using a local SQLite database. It enables users to search for movie titles, manually add listings, and automatically update the database through web scraping.-
- FlicenseNot gradedqualityDmaintenanceA robust MCP server that wraps The Movie Database API, enabling LLMs to search movies, get details, popular movies, and recommendations.-
- FlicenseNot gradedqualityBmaintenanceAn MCP server that answers natural-language movie questions using live TMDb data, with tools for searching, ranking, and retrieving detailed movie information.-