Moviesda MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
pip install -r requirements.txt
python server.py
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add moviesda-mcp -- python "<FULL_PATH_TO_MCPSERVER>/dist/index.js"

Replace <FULL_PATH_TO_MCPSERVER>/dist/index.js with the actual folder you prepared in step 1.

README.md

An MCP server for searching and managing Tamil movies from moviesda16.com

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

Installation

  1. Install dependencies:
pip install -r requirements.txt
  1. Run the server:
python server.py

Available Tools

1. search_movie

Search for movies by title.

Parameters:

  • query (required): Movie title to search for
  • limit (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 title
  • url (required): Movie URL path
  • year (optional): Release year
  • category (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

Tools (3)

search_movieSearch for movies by title.
add_movieManually add a movie to the database.
update_moviesScrape and update the database with latest movies from moviesda16.com.

Configuration

claude_desktop_config.json
{"mcpServers": {"moviesda": {"command": "python", "args": ["/path/to/server.py"]}}}

Try it

→Search for the movie Raja Saab in the database.
→Update the movie database with the latest listings from moviesda16.com.
→Add a new movie entry for a film released in 2026.
→Find Tamil movies matching the title query 'New Movie' with a limit of 5 results.

Frequently Asked Questions

What are the key features of Moviesda MCP Server?

Search for Tamil movies by title. Local SQLite database for fast search performance. Automated web scraping to update movie listings. Retrieve direct download links for movies.

What can I use Moviesda MCP Server for?

Quickly searching for specific Tamil movie titles within a local database. Maintaining an up-to-date local catalog of movies from moviesda16.com. Manually curating a personal list of movie links for easy access.

How do I install Moviesda MCP Server?

Install Moviesda MCP Server by running: pip install -r requirements.txt && python server.py

What MCP clients work with Moviesda MCP Server?

Moviesda MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Moviesda MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare