loading…
Search for a command to run...
loading…
An 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 a
An 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.
A Model Context Protocol (MCP) server for searching and managing Tamil movies from moviesda16.com.
pip install -r requirements.txt
python server.py
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
}
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"
}
Scrape and update the database with latest movies from moviesda16.com.
Parameters: None
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
)
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"]
}
}
}
⚠️ Disclaimer: This tool is for educational purposes only. Please respect copyright laws and support content creators.
MIT # M c p S e r v e r
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"moviesda-mcp-server": {
"command": "npx",
"args": []
}
}
}