Movies
Verified Safeby shireeshthota
Overview
Provides a robust, programmatic API for accessing and querying a movie dataset (profile, lookup by ID, search by criteria) via the Model Context Protocol (MCP), primarily designed to serve AI agents.
Installation
python movies_mcp.pyEnvironment Variables
- ANTHROPIC_API_KEY
Security Notes
The MCP server component (`movies_mcp.py`) itself avoids direct `eval` or external process execution based on arbitrary user input. It operates via `stdin/stdout` for communication, minimizing network attack surface. Data is loaded from a local CSV file, implying trust in the source data. Security considerations would primarily be with the client agents' LLM interactions and how they handle potentially malicious output, rather than the server itself.
Similar Servers
mcp-dotnet-samples
This MCP server retrieves GitHub Copilot customizations, including instructions, agents, prompts, and collections, from the `awesome-copilot` repository to provide contextual guidance to AI models.
sample-agentic-ai-demos
Provides various examples for building Agentic AI with AWS Bedrock using the Model Context Protocol (MCP) for tool invocation and inter-agent communication.
MCP-Agent
An autonomous AI agent designed to discover, connect to, and utilize tools and resources from various Model Context Protocol (MCP) servers to accomplish tasks.
python-mcp-agent-workshop
Implements an MCP server with a keyword search tool for AI agents to analyze codebases and provide insights.