@dennisk2025/random-movie-quote
v1.0.0
Published
Fetches a random famous movie quote, including the quote text, character, movie title, and release year.
Readme
random-movie-quote MCP Server
Fetches a random famous movie quote, including the quote text, character, movie title, and release year.
Features
- Instantly retrieve a random quote from a wide range of popular movies.
- Informs you of the quote's text, the speaking character, the movie's title, and its release year.
Installation
You can use this server directly with npx, or install it globally:
One-off usage
npx @dennisk2025/random-movie-quoteGlobal installation
npm install -g @dennisk2025/random-movie-quoteAdding to Claude Desktop
To use this MCP server in Claude Desktop, add the following block to your claude_desktop_config.json:
{
"mcpServers": {
"random-quote": {
"command": "npx",
"args": ["@dennisk2025/random-movie-quote"]
}
}
}Add this to your Claude Desktop config file at:
~/Library/Application Support/Claude/claude_desktop_config.json(macOS)%APPDATA%\Claude\claude_desktop_config.json(Windows)
Usage
After adding and reloading, you can call its tools from the Claude interface:
Available Tool(s)
1. get_random_movie_quote
- Description: Retrieves a random quote from a popular film, displaying the quote, character, movie, and year.
- Parameters: None
Example Tool Call
Input:
{
"tool": "get_random_movie_quote",
"parameters": {}
}Response:
{
"quote": "May the Force be with you.",
"character": "Han Solo",
"movie": "Star Wars",
"year": "1977"
}Troubleshooting
- If you see errors about fetching quotes, the upstream API may be temporarily unavailable.
Enjoy random movie quotes right in your Claude Desktop or via any MCP-compatible tool!
