Moviesda 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., "@Moviesda MCP Serversearch for the movie Maharaja and show me the details"
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.
Moviesda MCP Server
A Model Context Protocol (MCP) server for searching and managing Tamil movies from moviesda16.com.
Features
🔍 Movie Search: Search for Tamil movies by title
💾 SQLite Database: Local database for fast searches
🌐 Web Scraping: Automatically scrape and update movie listings
🔗 Direct Links: Get direct download links for movies
Related MCP server: Cinema Scheduler
Installation
Install dependencies:
pip install -r requirements.txtRun the server:
python server.pyAvailable Tools
1. search_movie
Search for movies by title.
Parameters:
query(required): Movie title to search forlimit(optional): Maximum number of results (default: 10)
Example:
{
"query": "Raja Saab",
"limit": 5
}2. add_movie
Manually add a movie to the database.
Parameters:
title(required): Movie titleurl(required): Movie URL pathyear(optional): Release yearcategory(optional): Movie category (default: "Tamil")
Example:
{
"title": "New Movie",
"year": 2026,
"url": "/new-movie-2026-tamil/",
"category": "Tamil"
}3. update_movies
Scrape and update the database with latest movies from moviesda16.com.
Parameters: None
Database Schema
The SQLite database (moviesda.db) contains a single table:
CREATE TABLE movies (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
year INTEGER,
url TEXT NOT NULL UNIQUE,
category TEXT,
added_date TEXT DEFAULT CURRENT_TIMESTAMP
)Usage with MCP Clients
To use this server with an MCP client like Claude Desktop, add the following to your MCP configuration:
{
"mcpServers": {
"moviesda": {
"command": "python",
"args": ["c:\\Users\\Daniel\\Documents\\tamilrockersMcp\\server.py"]
}
}
}Notes
⚠️ Disclaimer: This tool is for educational purposes only. Please respect copyright laws and support content creators.
License
MIT
McpServer
This server cannot be deployed
Maintenance
Related MCP Connectors
Unlock a world of television with the TV Maze MCP server. Effortlessly search for shows by name or
All HasData scraping tools in one MCP server: Google, TikTok, Instagram, maps, e-commerce and more.
Related MCP Servers
- AlicenseDqualityDmaintenanceAn MCP server that allows users to search for movies, get detailed information, receive genre-based recommendations, and discover popular/trending films using OMDb and TMDb APIs.513 npmMIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that scrapes movie theater schedules from eiga.com to provide movie, theater, and showtime data to AI assistants. It enables users to search for screenings and calculate the optimal viewing order for watching multiple movies.-
- FlicenseNot gradedqualityDmaintenanceThis MCP server scrapes Amazon product details and reviews, manages a local JSON database, and visualizes intelligence data through a rich dashboard.-
- AlicenseNot gradedqualityDmaintenanceA simple MCP server for fetching movie and TV show data from TMDB and OMDB APIs. Provides natural language capability for users to search, compare, and analyze movies through AI assistants.MIT